]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
fixup 8c68a7017 and cast to (unsigned long)
authorHarald Hoyer <harald@redhat.com>
Wed, 17 Apr 2013 16:23:17 +0000 (18:23 +0200)
committerHarald Hoyer <harald@redhat.com>
Wed, 17 Apr 2013 16:23:17 +0000 (18:23 +0200)
src/journal/sd-journal.c
src/readahead/readahead-collect.c
src/shared/util.c

index ba6c1cd30f4a1a63528e5d87c8b06d88fdd298d6..6d0f363faf267eff02e53a48d7ccc79c4799a074 100644 (file)
@@ -1248,11 +1248,11 @@ static void check_network(sd_journal *j, int fd) {
                 return;
 
         j->on_network =
-                (unsigned) sfs.f_type == CIFS_MAGIC_NUMBER ||
-                (unsigned) sfs.f_type == CODA_SUPER_MAGIC ||
-                (unsigned) sfs.f_type == NCP_SUPER_MAGIC ||
-                (unsigned) sfs.f_type == NFS_SUPER_MAGIC ||
-                (unsigned) sfs.f_type == SMB_SUPER_MAGIC;
+                (unsigned long) sfs.f_type == CIFS_MAGIC_NUMBER ||
+                (unsigned long) sfs.f_type == CODA_SUPER_MAGIC ||
+                (unsigned long) sfs.f_type == NCP_SUPER_MAGIC ||
+                (unsigned long) sfs.f_type == NFS_SUPER_MAGIC ||
+                (unsigned long) sfs.f_type == SMB_SUPER_MAGIC;
 }
 
 static int add_file(sd_journal *j, const char *prefix, const char *filename) {
index 6d7db4fae5bfe63bbe7a531cd2f9efff66ff685c..735bd8e3e0b055d49182a3999dbeea75aa427d43 100644 (file)
@@ -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) {
index 3a6efe3fce945b1820d0176ce3ad1f435c5aaa91..f59c19df29018242d9dd587df45af7ff0fc23afa 100644 (file)
@@ -2779,8 +2779,8 @@ int rm_rf_children_dangerous(int fd, bool only_dirs, bool honour_sticky, struct
 
 static int is_temporary_fs(struct statfs *s) {
         assert(s);
-        return (unsigned) s->f_type == TMPFS_MAGIC ||
-                (unsigned) s->f_type == RAMFS_MAGIC;
+        return (unsigned long) s->f_type == TMPFS_MAGIC ||
+                (unsigned long) s->f_type == RAMFS_MAGIC;
 }
 
 int rm_rf_children(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev) {