summaryrefslogtreecommitdiff
path: root/tests/calc.at
diff options
context:
space:
mode:
Diffstat (limited to 'tests/calc.at')
-rw-r--r--tests/calc.at4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/calc.at b/tests/calc.at
index 9696c4ee..85170097 100644
--- a/tests/calc.at
+++ b/tests/calc.at
@@ -94,8 +94,8 @@ main (int argc, const char **argv)
status = ]AT_NAME_PREFIX[parse (]AT_PARAM_IF([[&result, &count]])[);
if (fclose (input))
perror ("fclose");
- assert (global_result == result);
- assert (global_count == count);
+ assert (global_result == result); (void) result;
+ assert (global_count == count); (void) count;
return status;
}
]])