diff --git a/src/util/src/tmd5.c b/src/util/src/tmd5.c index bcf9bfeca58fa1884d9b94ce9203fc59a70919f3..ce1db7d7c05845f98a3bd72fde81ea6e3d3be5ca 100644 --- a/src/util/src/tmd5.c +++ b/src/util/src/tmd5.c @@ -95,7 +95,7 @@ void tMD5Init(T_MD5_CTX *mdContext) { mdContext->buf[3] = (uint32_t)0x10325476; } void MD5Init(MD5_CTX *mdContext) { - return tMD5Init(mdContext); + tMD5Init(mdContext); } /* The routine tMD5Update updates the message-digest context to @@ -130,7 +130,7 @@ void tMD5Update(T_MD5_CTX *mdContext, uint8_t *inBuf, unsigned int inLen) { } } void MD5Update(MD5_CTX *mdContext, uint8_t *inBuf, unsigned int inLen) { - return tMD5Update(mdContext, inBuf, inLen); + tMD5Update(mdContext, inBuf, inLen); } /* The routine tMD5Final terminates the message-digest computation and @@ -168,7 +168,7 @@ void tMD5Final(T_MD5_CTX *mdContext) { } } void MD5Final(MD5_CTX *mdContext) { - return tMD5Final(mdContext); + tMD5Final(mdContext); } /* Basic MD5 step. Transforms buf based on in.