summaryrefslogtreecommitdiff
path: root/md5.h
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-20 12:07:27 +0000
committertruelight <truelight@openttd.org>2006-08-20 12:07:27 +0000
commitbd7fabb647f5680136f8c7fa6e8c95d064f5c62c (patch)
treec1f29466e4787192f57ccff7170c266f90111a25 /md5.h
parent054dd2802b376fcc8e18dc2051a4fd581e222459 (diff)
downloadopenttd-bd7fabb647f5680136f8c7fa6e8c95d064f5c62c.tar.xz
(svn r5973) -Codechange: md5_append only uses size_t as nbytes param, so use that (michi_cc)
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 49b6b9926..cb2762563 100644
--- a/md5.h
+++ b/md5.h
@@ -81,7 +81,7 @@ extern "C"
void md5_init(md5_state_t *pms);
/* Append a string to the message. */
-void md5_append(md5_state_t *pms, const void *data, int nbytes);
+void md5_append(md5_state_t *pms, const void *data, size_t nbytes);
/* Finish the message and return the digest. */
void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);