mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
readahead: avoid gcc warning about format
src/readahead/readahead-common.c:55:17: warning: format ‘%zu’ expects argument of type ‘size_t’, but argument 7 has type ‘__off64_t’ [-Wformat=]
log_debug("Not preloading file %s with size out of bounds %zu", fn, st->st_size);
^
This commit is contained in:
@@ -52,7 +52,9 @@ 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 %zu", fn, st->st_size);
|
||||
assert_cc(sizeof(st->st_size) == 8);
|
||||
log_debug("Not preloading file %s with size out of bounds %"PRIu64,
|
||||
fn, st->st_size);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user