nasmlib/md5c: Fix typo in WORDS_LITTLEENDIAN

https://bugzilla.nasm.us/show_bug.cgi?id=3392416

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2017-06-24 14:32:05 +03:00
parent aac369d5b0
commit 6e53180085

View File

@ -18,7 +18,7 @@
#include "md5.h" #include "md5.h"
#include <string.h> /* for memcpy() */ #include <string.h> /* for memcpy() */
#ifdef WORDS_LITTEENDIAN #ifdef WORDS_LITTLEENDIAN
#define byteReverse(buf, len) /* Nothing */ #define byteReverse(buf, len) /* Nothing */
#else #else
static void byteReverse(unsigned char *buf, unsigned longs); static void byteReverse(unsigned char *buf, unsigned longs);