1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-28 20:25:25 +03:00

readahead: fix printf format string

This commit is contained in:
Lennart Poettering 2010-10-05 21:49:17 +02:00
parent f031e85fc0
commit 7607fea6a1

View 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;
}