style : fix some if(...
[openssl.git] / test / testutil.h
index 006bfb3a6888d088b7fbab5c1b8a2b4cdbdc0f7c..8373bb8a0940206d0d6a67e293b8124ac9010854 100644 (file)
@@ -282,7 +282,7 @@ void test_perror(const char *s);
  * a default description that indicates the file and line number of the error.
  *
  * The following macros guarantee to evaluate each argument exactly once.
- * This allows constructs such as: if(!TEST_ptr(ptr = OPENSSL_malloc(..)))
+ * This allows constructs such as: if (!TEST_ptr(ptr = OPENSSL_malloc(..)))
  * to produce better contextual output than:
  *      ptr = OPENSSL_malloc(..);
  *      if (!TEST_ptr(ptr))