projects
/
urcu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32becef
)
Fix CAA_BITS_PER_lONG typo
author
Paul E. McKenney
<paulmck@linux.vnet.ibm.com>
Tue, 1 Nov 2011 18:48:31 +0000
(14:48 -0400)
committer
Mathieu Desnoyers
<mathieu.desnoyers@efficios.com>
Tue, 1 Nov 2011 18:48:31 +0000
(14:48 -0400)
Should instead be CAA_BITS_PER_LONG.
Signed-off-by: Paul E. McKenney <paul.mckenney@linaro.org>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
rculfhash.c
patch
|
blob
|
blame
|
history
diff --git
a/rculfhash.c
b/rculfhash.c
index 4d37fac2f19e9a87c9401c94ae590ab0128d3c60..ebefa92ad8460c0d49501b67261b9087832167e0 100644
(file)
--- 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_
l
ONG == 32)
+#if (CAA_BITS_PER_
L
ONG == 32)
return fls_u32(x);
#else
return fls_u64(x);
This page took
0.026076 seconds
and
4
git commands to generate.