diff tests.c @ 311:31668615083e

Fix test printing function :S
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 22 Feb 2016 22:00:43 +0200
parents a95b5e5c1cd5
children f1dfabd89a13
line wrap: on
line diff
--- a/tests.c	Mon Feb 22 21:56:23 2016 +0200
+++ b/tests.c	Mon Feb 22 22:00:43 2016 +0200
@@ -35,7 +35,7 @@
 
 void tprintv(const int level, const char *fmt, va_list ap)
 {
-    if (level >= th_verbosityLevel)
+    if (level <= th_verbosityLevel)
         vfprintf(stdout, fmt, ap);
 }