Formatting & declaration cleanse.
authorPauli <paul.dale@oracle.com>
Thu, 27 Jul 2017 23:26:40 +0000 (09:26 +1000)
committerPauli <paul.dale@oracle.com>
Thu, 27 Jul 2017 23:26:40 +0000 (09:26 +1000)
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4032)

test/testutil.h

index 9786579f58aa89b127ad6bd099ef83ee5f9f8b08..8387e7292629bc357fae4e288c4d42f07792a7f6 100644 (file)
@@ -142,7 +142,7 @@ const char *test_get_option_argument(const char *option);
  * rather link to one of the helper main() methods.
  */
 
-void add_test(const char *test_case_name, int (*test_fn) ());
+void add_test(const char *test_case_name, int (*test_fn) (void));
 void add_all_tests(const char *test_case_name, int (*test_fn)(int idx), int num,
                    int subtest);
 
@@ -170,7 +170,7 @@ void cleanup_tests(void);
 # endif
 #endif
 
-#  define DECLARE_COMPARISON(type, name, opname)                        \
+# define DECLARE_COMPARISON(type, name, opname)                         \
     int test_ ## name ## _ ## opname(const char *, int,                 \
                                      const char *, const char *,        \
                                      const type, const type);