diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-09-30 18:06:02 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-09-30 18:06:02 +0200 |
commit | 5b61848df2ce706b9a2915ae180bced0e9debd34 (patch) | |
tree | 3f5c694022eae24754a4d9d73bb3fe99650d703c /src/readahead-common.c | |
parent | 010004791c98c6d8ebaa6a260dc42f7ef3a28944 (diff) |
readahead: minor 32bit fixes
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 a8f6fb30f8..908935e28d 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 %zi", fn, st->st_size); + log_debug("Not preloading file %s with size out of bounds %lli", fn, (unsigned long long) st->st_size); return 0; } |