Skip to content

Commit 61a40e6

Browse files
committed
Follow-up to r1931389: Fix argument type.
* subversion/libsvn_subr/checksum_apr.c (sha1_update): Accept 'char *' instead of 'void *'. git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1931395 13f79535-47bb-0310-9956-ffa450edef68
1 parent eeadac0 commit 61a40e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subversion/libsvn_subr/checksum_apr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ svn_checksum__md5_ctx_final(unsigned char *digest,
8787
/*** SHA1 checksum ***/
8888
static void
8989
sha1_update(apr_sha1_ctx_t *ctx,
90-
const void *data,
90+
const char *data,
9191
apr_size_t len)
9292
{
9393
while (len > 0)

0 commit comments

Comments
 (0)