summaryrefslogtreecommitdiff
path: root/md5.h
diff options
context:
space:
mode:
authorhackykid <hackykid@openttd.org>2005-06-01 11:52:44 +0000
committerhackykid <hackykid@openttd.org>2005-06-01 11:52:44 +0000
commitf7dcd2e834c28e7b4e4ba6e7833cf79c3b97b335 (patch)
tree85ffc0991699f19e38f7e937f8b493274594c341 /md5.h
parent351d7aaa9fd2fe1e5cd464130186727df38e646f (diff)
downloadopenttd-f7dcd2e834c28e7b4e4ba6e7833cf79c3b97b335.tar.xz
(svn r2390) - Codechange: Fix some warnings on GCC 4.0.0
Diffstat (limited to 'md5.h')
-rw-r--r--md5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/md5.h b/md5.h
index 3baa4dcdf..223f24ecf 100644
--- a/md5.h
+++ b/md5.h
@@ -79,7 +79,7 @@ extern "C"
void md5_init(md5_state_t *pms);
/* Append a string to the message. */
-void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes);
+void md5_append(md5_state_t *pms, const void *data, int nbytes);
/* Finish the message and return the digest. */
void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);