Fix: format string signedness
[userspace-rcu.git] / rculfhash.c
index 57f1a04d46dd3d446ca88fa74267660dd7a26fe2..517b6a913d23dc05a209aa2dbd078e659c9510a0 100644 (file)
@@ -1386,7 +1386,7 @@ void fini_table(struct cds_lfht *ht,
                unsigned long len;
 
                len = 1UL << (i - 1);
-               dbg_printf("fini order %lu len: %lu\n", i, len);
+               dbg_printf("fini order %ld len: %lu\n", i, len);
 
                /* Stop shrink if the resize target changes under us */
                if (CMM_LOAD_SHARED(ht->resize_target) > (1UL << (i - 1)))
This page took 0.02268 seconds and 4 git commands to generate.