unused variable

This commit is contained in:
Enno Rehling 2016-09-05 17:48:54 +01:00
parent fa6a3e377d
commit c525553c49
1 changed files with 1 additions and 0 deletions

View File

@ -104,6 +104,7 @@ static void test_leak(CuTest *tc) {
token.i = 42;
addtoken(&tokens, "NW", token);
addtoken(&tokens, "northwest", token);
CuAssertIntEquals(tc, E_TOK_SUCCESS, findtoken(tokens, "n", &token));
freetokens(tokens);
}