summaryrefslogtreecommitdiffstats
path: root/crypto/o_str.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-02-26 16:50:59 +0000
committerMatt Caswell <matt@openssl.org>2016-02-26 16:50:59 +0000
commitb6e785842a8e9830e078cf70073c10f7be36b3b1 (patch)
tree2c480af581e24daf69f0b267550ae405d81bf41a /crypto/o_str.c
parent56b10d88246af1b2d52cd488a7d3584acee08225 (diff)
Fix master compile error
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/o_str.c')
-rw-r--r--crypto/o_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/o_str.c b/crypto/o_str.c
index b01128cdb3..84005e66b5 100644
--- a/crypto/o_str.c
+++ b/crypto/o_str.c
@@ -139,7 +139,7 @@ char *CRYPTO_strndup(const char *str, size_t s, const char* file, int line)
if (str == NULL)
return NULL;
- maxlen = OPENSSL_strnlen(str, s)
+ maxlen = OPENSSL_strnlen(str, s);
ret = CRYPTO_malloc(maxlen + 1, file, line);
if (ret) {