diff options
author | Emilia Kasper <emilia@openssl.org> | 2016-11-01 15:12:32 +0100 |
---|---|---|
committer | Emilia Kasper <emilia@openssl.org> | 2016-11-02 11:34:25 +0100 |
commit | ffd3d0ef34aac46c06379cc50d38c5c0324c3d4c (patch) | |
tree | 3e42391a2408fd1b8ba5bc418711cf6306b6e9bc /test/testutil.h | |
parent | Secure our notification email. (diff) | |
download | openssl-ffd3d0ef34aac46c06379cc50d38c5c0324c3d4c.tar.xz openssl-ffd3d0ef34aac46c06379cc50d38c5c0324c3d4c.zip |
TEST_check macro: don't end with semi
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/testutil.h')
-rw-r--r-- | test/testutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testutil.h b/test/testutil.h index 14b7b09800..68d202adb1 100644 --- a/test/testutil.h +++ b/test/testutil.h @@ -108,4 +108,4 @@ int strings_equal(const char *desc, const char *s1, const char *s2); ERR_print_errors_fp(stderr); \ OPENSSL_assert(!#condition); \ } \ - } while (0); + } while (0) |