summaryrefslogtreecommitdiff
path: root/src/utils/sha256.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-09-18 19:41:29 +0300
committerAndrei Karas <akaras@inbox.ru>2011-09-18 19:41:29 +0300
commit01b26b05ec787cb8cbfce27474362f5c29650f60 (patch)
treeb1cc26b1ef4f6745d5b607df1093bb070f3939bb /src/utils/sha256.cpp
parent3b999f51c740d0541c53d223518e5e4bb482d996 (diff)
downloadmv-01b26b05ec787cb8cbfce27474362f5c29650f60.tar.gz
mv-01b26b05ec787cb8cbfce27474362f5c29650f60.tar.bz2
mv-01b26b05ec787cb8cbfce27474362f5c29650f60.tar.xz
mv-01b26b05ec787cb8cbfce27474362f5c29650f60.zip
Fix compilation warnings.
Diffstat (limited to 'src/utils/sha256.cpp')
-rw-r--r--src/utils/sha256.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/sha256.cpp b/src/utils/sha256.cpp
index 1e7143300..523c021a4 100644
--- a/src/utils/sha256.cpp
+++ b/src/utils/sha256.cpp
@@ -101,7 +101,7 @@ class SHA256Context
#define SHFR(x, n) (x >> n)
#define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n)))
-#define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n)))
+//#define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n)))
#define CH(x, y, z) ((x & y) ^ (~x & z))
#define MAJ(x, y, z) ((x & y) ^ (x & z) ^ (y & z))