aboutsummaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorKyle Altendorf <sda@fstab.net>2019-09-22 10:49:18 -0400
committerKyle Altendorf <sda@fstab.net>2019-09-22 10:49:18 -0400
commitaa48eeb88322d9869c3fb63add005c5e04207e5d (patch)
tree80669480a5730c7d83de5dcd927363e27a4e5640 /test.c
parentMerge branch 'master' into return_for_test_failed (diff)
downloadsiphash-aa48eeb88322d9869c3fb63add005c5e04207e5d.tar.gz
siphash-aa48eeb88322d9869c3fb63add005c5e04207e5d.tar.xz
Initialize any_failed
oops
Diffstat (limited to '')
-rw-r--r--test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.c b/test.c
index 64d2ec3..69ad7b8 100644
--- a/test.c
+++ b/test.c
@@ -47,7 +47,7 @@ size_t lengths[4] = {8, 16, 4, 8};
int siphash_test() {
uint8_t in[64], out[16], k[16];
int i;
- bool any_failed;
+ bool any_failed = false;
#ifndef GETVECTORS
int fails = 0;
#endif