From 435d8012393405dc55dbc1798ad8ead9cac41e67 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 5 Dec 2015 18:45:03 +0100 Subject: [PATCH] fix compiation problems after merge what is going on with this? why was critbit outdated? --- critbit | 2 +- src/reports.test.c | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/critbit b/critbit index dfe57a077..934c2dd94 160000 --- a/critbit +++ b/critbit @@ -1 +1 @@ -Subproject commit dfe57a077222c6b572da61a79dc0687f81c10055 +Subproject commit 934c2dd94d41da19637a76a1a8b3dfeb7aa8524d diff --git a/src/reports.test.c b/src/reports.test.c index 40870c435..da1c41a14 100644 --- a/src/reports.test.c +++ b/src/reports.test.c @@ -336,10 +336,13 @@ static void test_spell_syntax(CuTest *tc, char *msg, spell_fixture *spell, char while (linestart && !strstr(linestart, "ZAUBERE")) linestart = strtok(NULL, "\n") ; - CuAssertTrue(tc, (bool) linestart); + CuAssertPtrNotNull(tc, linestart); - while ((newline = strtok(NULL, "\n"))) - *(newline-1) = '\n'; + newline = strtok(NULL, "\n"); + while (newline) { + *(newline - 1) = '\n'; + newline = strtok(NULL, "\n"); + } CuAssertStrEquals_Msg(tc, msg, syntax, linestart);