summaryrefslogtreecommitdiffstats
path: root/cpukit/libmd/md5.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-10-31 13:50:49 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-10-31 14:32:24 +0100
commit4479006955a6ae8458e42c87ac2aee169a67d243 (patch)
treeda38dba060a6d5840a48225e616eb107b9620d4d /cpukit/libmd/md5.h
parentFilesystem: Clear open flag early in close() (diff)
downloadrtems-4479006955a6ae8458e42c87ac2aee169a67d243.tar.bz2
libmd: Change MD5Update() prototype
This is in line with the FreeBSD and OpenSSL prototypes. It helps to avoid superfluous compiler warnings.
Diffstat (limited to 'cpukit/libmd/md5.h')
-rw-r--r--cpukit/libmd/md5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libmd/md5.h b/cpukit/libmd/md5.h
index 450cb9f537..ca48d61d7b 100644
--- a/cpukit/libmd/md5.h
+++ b/cpukit/libmd/md5.h
@@ -60,7 +60,7 @@ typedef struct {
} MD5_CTX;
void MD5Init (MD5_CTX *);
-void MD5Update (MD5_CTX *, const unsigned char *, unsigned int);
+void MD5Update (MD5_CTX *, const void *, unsigned int);
void MD5Final (unsigned char [16], MD5_CTX *);
#ifdef __cplusplus