Fix indentation
[openssl.git] / test / tls13encryptiontest.c
index 0d0108c2344d8c208d543725a1b3c074c0eb1715..667f9534de1e6f59ceef6ba10067ffab5c41d5c1 100644 (file)
@@ -385,7 +385,7 @@ static int test_tls13_encryption(void)
         seq = NULL;
     }
 
-    TEST_note("PASS: %"OSSLzu" records tested", ctr);
+    TEST_note("PASS: %zu records tested", ctr);
     ret = 1;
 
  err:
@@ -398,7 +398,8 @@ static int test_tls13_encryption(void)
     return ret;
 }
 
-void register_tests(void)
+int setup_tests(void)
 {
     ADD_TEST(test_tls13_encryption);
+    return 1;
 }