mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-12 09:17:44 +03:00
readahead: minor 32bit fixes
This commit is contained in:
parent
010004791c
commit
5b61848df2
@ -435,7 +435,7 @@ done:
|
||||
on_ssd = fs_on_ssd(root) > 0;
|
||||
log_debug("On SSD: %s", yes_no(on_ssd));
|
||||
|
||||
on_btrfs = statfs(root, &sfs) >= 0 && sfs.f_type == BTRFS_SUPER_MAGIC;
|
||||
on_btrfs = statfs(root, &sfs) >= 0 && (long) sfs.f_type == (long) BTRFS_SUPER_MAGIC;
|
||||
log_debug("On btrfs: %s", yes_no(on_btrfs));
|
||||
|
||||
asprintf(&pack_fn, "%s/.readahead", root);
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user