X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Freadahead-common.c;h=d76188b71f4c09de305f2a6556059f39b7d98d72;hp=a8f6fb30f81a366550d24f0c58ffdf14d0370ea8;hb=7607fea6a1c3301f86dea204ab7c7e0d98385464;hpb=43be53513acba2b205fca248ff46cfd3ed7cfda8 diff --git a/src/readahead-common.c b/src/readahead-common.c index a8f6fb30f..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 %zi", fn, st->st_size); + log_debug("Not preloading file %s with size out of bounds %llu", fn, (unsigned long long) st->st_size); return 0; }