summaryrefslogtreecommitdiff
path: root/deps/openssl/openssl/crypto/md4/md4.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/openssl/openssl/crypto/md4/md4.c')
-rw-r--r--deps/openssl/openssl/crypto/md4/md4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/openssl/openssl/crypto/md4/md4.c b/deps/openssl/openssl/crypto/md4/md4.c
index c9fab6669a..a79997f8ff 100644
--- a/deps/openssl/openssl/crypto/md4/md4.c
+++ b/deps/openssl/openssl/crypto/md4/md4.c
@@ -102,7 +102,7 @@ void do_fp(FILE *f)
fd = fileno(f);
MD4_Init(&c);
for (;;) {
- i = read(fd, buf, sizeof buf);
+ i = read(fd, buf, sizeof(buf));
if (i <= 0)
break;
MD4_Update(&c, buf, (unsigned long)i);