Fix: Use %lu rather than %ld to print count
[urcu.git] / src / rculfhash.c
index 8046f3a63a280397be3986231f1db8921ea4bfdb..872d6ff1dea4d1a8533f5bc0c3ba70fe0a438db3 100644 (file)
@@ -763,7 +763,7 @@ void ht_count_del(struct cds_lfht *ht, unsigned long size, unsigned long hash)
 
        if ((count >> CHAIN_LEN_RESIZE_THRESHOLD) >= size)
                return;
-       dbg_printf("del set global %ld\n", count);
+       dbg_printf("del set global %lu\n", count);
        /*
         * Don't shrink table if the number of nodes is below a
         * certain threshold.
This page took 0.022691 seconds and 4 git commands to generate.