chiark / gitweb /
readahead: fix printf format string
authorLennart Poettering <lennart@poettering.net>
Tue, 5 Oct 2010 19:49:17 +0000 (21:49 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 5 Oct 2010 19:49:17 +0000 (21:49 +0200)
src/readahead-common.c

index 908935e28d4c7e03695d0d413ce2251e5fc047ab..d76188b71f4c09de305f2a6556059f39b7d98d72 100644 (file)
@@ -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;
         }