From: Paul E. McKenney Date: Tue, 1 Nov 2011 18:48:31 +0000 (-0400) Subject: Fix CAA_BITS_PER_lONG typo X-Git-Tag: v0.7.0~43^2~67 X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=6887cc5e59ed0275616771957b4158b68c5d5d9a Fix CAA_BITS_PER_lONG typo Should instead be CAA_BITS_PER_LONG. Signed-off-by: Paul E. McKenney Signed-off-by: Mathieu Desnoyers --- diff --git a/rculfhash.c b/rculfhash.c index 4d37fac..ebefa92 100644 --- a/rculfhash.c +++ b/rculfhash.c @@ -454,7 +454,7 @@ unsigned int fls_u32(uint32_t x) unsigned int fls_ulong(unsigned long x) { -#if (CAA_BITS_PER_lONG == 32) +#if (CAA_BITS_PER_LONG == 32) return fls_u32(x); #else return fls_u64(x);