From: yaowenbin1 Date: Thu, 9 Jun 2022 03:08:25 +0000 (+0800) Subject: Fix: Use %lu rather than %ld to print count X-Git-Tag: v0.14.0~32 X-Git-Url: https://git.lttng.org/?p=urcu.git;a=commitdiff_plain;h=59b6b14faa1ef105997fdffd9048ec56b3808ce8 Fix: Use %lu rather than %ld to print count In ht_count_del function, the type of count variable is defined as unsigned long, so use %lu rather than %ld to print it. Signed-off-by: yaowenbin1 Signed-off-by: Mathieu Desnoyers Change-Id: Ie2701fa0a8170b05532429b34e0f798e6f27139b --- diff --git a/src/rculfhash.c b/src/rculfhash.c index 8046f3a..872d6ff 100644 --- a/src/rculfhash.c +++ b/src/rculfhash.c @@ -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.