diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-06-15 08:41:20 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-06-15 08:41:20 +0000 |
commit | 4f372c38184ec7d6748d68d4b4b0801c0632c5ed (patch) | |
tree | 6f05ceeffa63a14da70f886ebb7b340ea0dae15d | |
parent | e444a218a22b013386f4f02f450358c5e73efbad (diff) |
Look at this further later - 64 bit fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4004 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_cloaking.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp index 4b9be01c4..302c56dfa 100644 --- a/src/modules/m_cloaking.cpp +++ b/src/modules/m_cloaking.cpp @@ -48,7 +48,7 @@ using namespace std; #define F4(x, y, z) (y ^ (x | ~z)) #define MD5STEP(f,w,x,y,z,in,s) (w += f(x,y,z) + in, w = (w<<s | w>>(32-s)) + x) -typedef unsigned long word32; +typedef unsigned int word32; /* NOT unsigned long. We don't support 16 bit platforms, anyway. */ typedef unsigned char byte; struct xMD5Context { |