chiark / gitweb /
udev: silent gcc warnings
authorKay Sievers <kay@vrfy.org>
Fri, 25 May 2012 12:25:46 +0000 (14:25 +0200)
committerKay Sievers <kay@vrfy.org>
Fri, 25 May 2012 12:25:46 +0000 (14:25 +0200)
src/libudev/libudev-monitor.c
src/udev/udev-builtin-input_id.c

index 566e9761aa0eb55beef90384f7faa3e33f36f09a..32319aca7b195ee13bb1f0110e1f2148ce66ffa3 100644 (file)
@@ -578,7 +578,7 @@ retry:
                             nlh->magic, htonl(UDEV_MONITOR_MAGIC));
                         return NULL;
                 }
                             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 {
                         return NULL;
                 bufpos = nlh->properties_off;
         } else {
index fce10a351acd6a19b35a5e564831ffbf149f67f6..ce696eead05e43f63d4b2810848163f57ca0f033 100644 (file)
@@ -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];
         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) {
         }
         /* If there are no keys in the lower block, check the higher block */
         if (!found) {