Skip to content
Snippets Groups Projects
Commit 6002d8fa authored by Steffen Vogel's avatar Steffen Vogel :santa_tone2:
Browse files

tests: small fix to avoid compilter error about unused result

parent c2d76829
Branches
Tags v0.6.2
No related merge requests found
......@@ -97,7 +97,10 @@ Test(advio, download_large)
char line[4096];
afgets(line, 4096, af);
char *f;
f = afgets(line, 4096, af);
cr_assert_not_null(f);
/* Check first line */
cr_assert_str_eq(line, "# VILLASnode signal params: type=mixed, values=4, rate=1000.000000, limit=100000, amplitude=1.000000, freq=1.000000\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment