From fdb46ac24c00cc143dd7d9843b7cce76c7e1263c Mon Sep 17 00:00:00 2001 From: David Garske Date: Fri, 5 May 2017 11:11:17 -0700 Subject: [PATCH] Fix typo with blake2b_test return code. --- wolfcrypt/test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index 510c5a0ec..94f09a624 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -1506,7 +1506,7 @@ int blake2b_test(void) return -1920 - i; if (XMEMCMP(digest, blake2b_vec[i], 64) != 0) { - return -193o - i; + return -1930 - i; } }