diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-11-16 17:17:21 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-11-16 23:26:44 +0100 |
commit | 943aad8ca57a6b5c49c4ea60f9e8c13bf9b20e6c (patch) | |
tree | 94ff8a9dd029b7505a1917b9d781e87b06454f19 /src/journal/sd-journal.c | |
parent | 92b5814007dc5c9c44e94e717be6f53e24c356c0 (diff) |
journal, shared: fix warnings during compilation on 32 bits
Some filesystem magics are too big to fit in 31 bits,
and are wrapped to negative. f_type is an int on 32 bits, so
it is signed, and we get a warning on comparison.
Diffstat (limited to 'src/journal/sd-journal.c')
-rw-r--r-- | src/journal/sd-journal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index c86f1eaab1..41f0c4dfb4 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -1205,7 +1205,7 @@ static void check_network(sd_journal *j, int fd) { return; j->on_network = - sfs.f_type == CIFS_MAGIC_NUMBER || + (long)sfs.f_type == (long)CIFS_MAGIC_NUMBER || sfs.f_type == CODA_SUPER_MAGIC || sfs.f_type == NCP_SUPER_MAGIC || sfs.f_type == NFS_SUPER_MAGIC || |