diff options
author | Harald Hoyer <harald@redhat.com> | 2013-04-17 18:23:17 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-04-17 18:23:17 +0200 |
commit | cddf148028f525be8176e7f1cbbf4f862bd287f6 (patch) | |
tree | 7930adc3be2637b70d869236743c457f66abf3b8 /src/readahead | |
parent | 8c68a70170b31f93c287f29fd06c6c17edaf19ad (diff) |
fixup 8c68a7017 and cast to (unsigned long)
Diffstat (limited to 'src/readahead')
-rw-r--r-- | src/readahead/readahead-collect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/readahead/readahead-collect.c b/src/readahead/readahead-collect.c index 6d7db4fae5..735bd8e3e0 100644 --- a/src/readahead/readahead-collect.c +++ b/src/readahead/readahead-collect.c @@ -505,7 +505,7 @@ done: on_ssd = fs_on_ssd(root) > 0; log_debug("On SSD: %s", yes_no(on_ssd)); - on_btrfs = statfs(root, &sfs) >= 0 && (unsigned) sfs.f_type == BTRFS_SUPER_MAGIC; + on_btrfs = statfs(root, &sfs) >= 0 && (unsigned long) sfs.f_type == BTRFS_SUPER_MAGIC; log_debug("On btrfs: %s", yes_no(on_btrfs)); if (asprintf(&pack_fn_new, "%s/.readahead.new", root) < 0) { |