Fix CAA_BITS_PER_lONG typo
[urcu.git] / rculfhash.c
index 4d37fac2f19e9a87c9401c94ae590ab0128d3c60..ebefa92ad8460c0d49501b67261b9087832167e0 100644 (file)
@@ -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);
This page took 0.021924 seconds and 4 git commands to generate.