diff mbox

[libdrm,v2,8/8] drm: use correct printf modifiers

Message ID 1427414231-11385-8-git-send-email-emil.l.velikov@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Emil Velikov March 26, 2015, 11:57 p.m. UTC
The valies are unsigned long, thus we should use %lu.

v2: Drop old printf statement. (Jan)

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
---
 xf86drmHash.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/xf86drmHash.c b/xf86drmHash.c
index 199a2a3..f287e61 100644
--- a/xf86drmHash.c
+++ b/xf86drmHash.c
@@ -99,7 +99,7 @@  static unsigned long HashHash(unsigned long key)
 
     hash %= HASH_SIZE;
 #if DEBUG
-    printf( "Hash(%d) = %d\n", key, hash);
+    printf( "Hash(%lu) = %lu\n", key, hash);
 #endif
     return hash;
 }
@@ -202,7 +202,7 @@  int drmHashInsert(void *t, unsigned long key, void *value)
     bucket->next         = table->buckets[hash];
     table->buckets[hash] = bucket;
 #if DEBUG
-    printf("Inserted %d at %d/%p\n", key, hash, bucket);
+    printf("Inserted %lu at %lu/%p\n", key, hash, bucket);
 #endif
     return 0;			/* Added to table */
 }