diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2006-01-17 15:35:57 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2006-01-17 15:35:57 +0000 |
commit | 25a14196dd8e3f2483a0911237e5567986afae31 (patch) | |
tree | 101d4be37f349e17f665a23b1aa8744624569973 /sbin/md5 | |
parent | a1c10dcb4c58b6f8ea388bfd9448c1584e0cab4f (diff) | |
download | src-test2-25a14196dd8e3f2483a0911237e5567986afae31.tar.gz src-test2-25a14196dd8e3f2483a0911237e5567986afae31.zip |
Notes
Diffstat (limited to 'sbin/md5')
-rw-r--r-- | sbin/md5/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c index 1423b16bcb9a..fa853fbcbc12 100644 --- a/sbin/md5/md5.c +++ b/sbin/md5/md5.c @@ -61,7 +61,7 @@ typedef struct Algorithm_t { DIGEST_Init *Init; DIGEST_Update *Update; DIGEST_End *End; - char *(*Data)(const unsigned char *, unsigned int, char *); + char *(*Data)(const void *, unsigned int, char *); char *(*File)(const char *, char *); } Algorithm_t; |