aboutsummaryrefslogtreecommitdiff
path: root/src/common/md5.cc
diff options
context:
space:
mode:
authordmaclach <dmaclach@4c0a9323-5329-0410-9bdc-e9ce6186880e>2014-02-24 21:35:40 +0000
committerdmaclach <dmaclach@4c0a9323-5329-0410-9bdc-e9ce6186880e>2014-02-24 21:35:40 +0000
commit47585f7deea1e18623a54bb6f9a629604563dc27 (patch)
treebd6e710fcefe00a2e1b576aee4549d166ba0038e /src/common/md5.cc
parentFix up ~14 warnings about 'Implicit conversion loses integer precision' on iOS. (diff)
downloadbreakpad-47585f7deea1e18623a54bb6f9a629604563dc27.tar.xz
Fixup breakpad compile for Xcode 5.1 iOS release
(https://breakpad.appspot.com/1154002/) git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1282 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/md5.cc')
-rw-r--r--src/common/md5.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/md5.cc b/src/common/md5.cc
index 76f8ed14..a0d9a1bd 100644
--- a/src/common/md5.cc
+++ b/src/common/md5.cc
@@ -166,7 +166,7 @@ void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
*/
static void MD5Transform(u32 buf[4], u32 const in[16])
{
- register u32 a, b, c, d;
+ u32 a, b, c, d;
a = buf[0];
b = buf[1];