From 7607fea6a1c3301f86dea204ab7c7e0d98385464 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 5 Oct 2010 21:49:17 +0200 Subject: [PATCH 1/1] readahead: fix printf format string --- src/readahead-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/readahead-common.c b/src/readahead-common.c index 908935e28..d76188b71 100644 --- a/src/readahead-common.c +++ b/src/readahead-common.c @@ -49,7 +49,7 @@ int file_verify(int fd, const char *fn, off_t file_size_max, struct stat *st) { } if (st->st_size <= 0 || st->st_size > file_size_max) { - log_debug("Not preloading file %s with size out of bounds %lli", fn, (unsigned long long) st->st_size); + log_debug("Not preloading file %s with size out of bounds %llu", fn, (unsigned long long) st->st_size); return 0; } -- 2.30.2