]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Test: fix TEST_Fail
authorTimePath <andrew.hardaker1995@gmail.com>
Sun, 3 Jan 2016 10:24:39 +0000 (21:24 +1100)
committerTimePath <andrew.hardaker1995@gmail.com>
Sun, 3 Jan 2016 10:24:39 +0000 (21:24 +1100)
qcsrc/lib/test.qc

index 23b0327683f15ba7f744a4edb64ae35dd8e89b53..1a71c7529705f7f99c7bd8bf55dd0067a1d8d1e0 100644 (file)
@@ -5,7 +5,7 @@ bool TEST_ok;
 
 void TEST_Fail(string cond)
 {
-       LOG_INFOF("Assertion failed: ", cond);
+       LOG_INFOF("Assertion failed: %s", cond);
        // backtrace();
        ++TEST_failed;
 }