diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-10-05 21:49:17 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-10-05 21:49:17 +0200 |
commit | 7607fea6a1c3301f86dea204ab7c7e0d98385464 (patch) | |
tree | f5367012ab64cae851412ded0e89bd596886a30a /src/readahead-common.c | |
parent | f031e85fc0a11636445e0bf50493c705942dd03f (diff) |
readahead: fix printf format string
Diffstat (limited to 'src/readahead-common.c')
-rw-r--r-- | src/readahead-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/readahead-common.c b/src/readahead-common.c index 908935e28d..d76188b71f 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; } |