aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/bithelp.h
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/bithelp.h')
-rw-r--r--cipher/bithelp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/bithelp.h b/cipher/bithelp.h
index 188db168a..d6eae8edf 100644
--- a/cipher/bithelp.h
+++ b/cipher/bithelp.h
@@ -34,7 +34,7 @@ rol( u32 x, int n)
return x;
}
#else
- #define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) )
+#define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) )
#endif