Fix: Use %lu rather than %ld to print count
[urcu.git] / src / rculfhash.c
index aa99c3e85a41c42e101ac5468dc88dcce9cca5c9..c286f4303dd2d491ea0e8de7be3542d04d039a75 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.029812 seconds and 4 git commands to generate.