summaryrefslogtreecommitdiff
path: root/apps/netutils/codecs/md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/netutils/codecs/md5.c')
-rw-r--r--apps/netutils/codecs/md5.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/netutils/codecs/md5.c b/apps/netutils/codecs/md5.c
index eb564973f..0441f4147 100644
--- a/apps/netutils/codecs/md5.c
+++ b/apps/netutils/codecs/md5.c
@@ -97,15 +97,15 @@
#ifndef CONFIG_ENDIAN_BIG
# define byteReverse(buf, len)
#else
-static void byteReverse(unsigned char *buf, unsigned longs)
+static void byteReverse(FAR unsigned char *buf, unsigned longs)
{
uint32_t t;
do
{
- t = ((uint32_t)buf[3] << 8) |
- ((uint32_t)buf[2]) << 16) |
- ((uint32_t)buf[1] << 8) |
- (uint32_t)buf[0];
+ t = ((uint32_t)buf[3] << 24) |
+ ((uint32_t)buf[2] << 16) |
+ ((uint32_t)buf[1] << 8) |
+ (uint32_t)buf[0];
*(uint32_t*)buf = t;
buf += 4;