From 9315301a562fab2df7735c52d80e6e85c729b3cb Mon Sep 17 00:00:00 2001 From: dmaclach Date: Tue, 18 Feb 2014 22:52:02 +0000 Subject: Fix up ~14 warnings about 'Implicit conversion loses integer precision' on iOS. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1281 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/md5.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/md5.cc') diff --git a/src/common/md5.cc b/src/common/md5.cc index bccf61c6..76f8ed14 100644 --- a/src/common/md5.cc +++ b/src/common/md5.cc @@ -58,7 +58,7 @@ void MD5Init(struct MD5Context *ctx) * Update context to reflect the concatenation of another buffer full * of bytes. */ -void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len) +void MD5Update(struct MD5Context *ctx, unsigned char const *buf, size_t len) { u32 t; -- cgit v1.2.1