diff options
author | Yang Tse <yangsita@gmail.com> | 2010-08-04 19:05:09 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-08-04 19:05:09 +0200 |
commit | 364fd2f1ada84eb713ec14629ca66fa332b19851 (patch) | |
tree | 5da7164a720adf4b51663bb46f4440db23824d88 /lib/md5.c | |
parent | 1cbe66fbc8e7d6c174c1919a905b768b9c48e1f8 (diff) | |
download | curl-364fd2f1ada84eb713ec14629ca66fa332b19851.tar.gz |
build: remove unneeded cast to (void *)
Diffstat (limited to 'lib/md5.c')
-rw-r--r-- | lib/md5.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -205,7 +205,7 @@ static void MD5_Update (struct md5_ctx *context, /* context */ /* Transform as many times as possible. */ if(inputLen >= partLen) { - memcpy((void *)&context->buffer[bufindex], (void *)input, partLen); + memcpy(&context->buffer[bufindex], input, partLen); MD5Transform(context->state, context->buffer); for (i = partLen; i + 63 < inputLen; i += 64) @@ -217,7 +217,7 @@ static void MD5_Update (struct md5_ctx *context, /* context */ i = 0; /* Buffer remaining input */ - memcpy((void *)&context->buffer[bufindex], (void *)&input[i], inputLen-i); + memcpy(&context->buffer[bufindex], &input[i], inputLen-i); } /* MD5 finalization. Ends an MD5 message-digest operation, writing the |