mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 10:51:20 +03:00
udev: silent gcc warnings
This commit is contained in:
parent
79849bf9f4
commit
ee56538fa7
@ -578,7 +578,7 @@ retry:
|
||||
nlh->magic, htonl(UDEV_MONITOR_MAGIC));
|
||||
return NULL;
|
||||
}
|
||||
if (nlh->properties_off+32 > buflen)
|
||||
if (nlh->properties_off+32 > (size_t)buflen)
|
||||
return NULL;
|
||||
bufpos = nlh->properties_off;
|
||||
} else {
|
||||
|
@ -159,7 +159,7 @@ static void test_key (struct udev_device *dev,
|
||||
found = 0;
|
||||
for (i = 0; i < BTN_MISC/BITS_PER_LONG; ++i) {
|
||||
found |= bitmask_key[i];
|
||||
log_debug("test_key: checking bit block %lu for any keys; found=%i\n", i*BITS_PER_LONG, found > 0);
|
||||
log_debug("test_key: checking bit block %lu for any keys; found=%i\n", (unsigned long)i*BITS_PER_LONG, found > 0);
|
||||
}
|
||||
/* If there are no keys in the lower block, check the higher block */
|
||||
if (!found) {
|
||||
|
Loading…
Reference in New Issue
Block a user