]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
C90 compliance for #13104 fixes
authorNick Mathewson <nickm@torproject.org>
Thu, 11 Sep 2014 04:10:53 +0000 (00:10 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 11 Sep 2014 04:10:53 +0000 (00:10 -0400)
src/test/test_util.c

index eed37ca817210d48e12a1b5e3a81d1d6f522d7bc..e105435f054d02a2b5b668a31da245f0bb61468c 100644 (file)
@@ -3277,6 +3277,7 @@ test_util_di_ops(void)
   /* exhaustively white-box test tor_memeq
    * against each possible (single-byte) bit difference
    * some arithmetic bugs only appear with certain bit patterns */
+  {
   const uint8_t z = 0;
   uint8_t ii = 0;
   for (i = 0; i < 256; i++) {
@@ -3292,6 +3293,7 @@ test_util_di_ops(void)
     test_eq(tor_memcmp(&z, &ii, 1) > 0 ? GT : EQ, z > ii ? GT : EQ);
     test_eq(tor_memcmp(&ii, &z, 1) < 0 ? LT : EQ, ii < z ? LT : EQ);
   }
+  }
 
   tt_int_op(1, ==, safe_mem_is_zero("", 0));
   tt_int_op(1, ==, safe_mem_is_zero("", 1));