diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-03-23 00:42:59 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-03-23 00:42:59 +0100 |
commit | 4dd7fb60a8e46856cb2df3fcda56b9b119072552 (patch) | |
tree | 1241083d40e5c390c91e651975d6b8d465525af5 /src/modules/m_md5.cpp | |
parent | 74fa7f46dc0ad87c9e55b3fb26f65d7a3d05ab97 (diff) | |
parent | c38d29fd760a52958377a0664cbcdf74e9a12c84 (diff) |
Merge pull request #1004 from SaberUK/insp20+fix-various-warnings
[2.0] Fix various warnings with the new Doxygen and LLVM releases.
Diffstat (limited to 'src/modules/m_md5.cpp')
-rw-r--r-- | src/modules/m_md5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_md5.cpp b/src/modules/m_md5.cpp index 14ccf16a8..c902ee3cb 100644 --- a/src/modules/m_md5.cpp +++ b/src/modules/m_md5.cpp @@ -163,7 +163,7 @@ class MD5Provider : public HashProvider void MD5Transform(word32 buf[4], word32 const in[16]) { - register word32 a, b, c, d; + word32 a, b, c, d; a = buf[0]; b = buf[1]; |