tests: fix iso-c90 conformance

This commit is contained in:
Hugues Delorme 2015-03-03 17:10:10 +01:00
parent 61a127332a
commit 2cc2efcc9f

View File

@ -25,9 +25,9 @@
#define UTEST_MAIN(name) \ #define UTEST_MAIN(name) \
int main(int argc, char *argv[]) {\ int main(int argc, char *argv[]) {\
(void)argc; \
const char *result = NULL; \ const char *result = NULL; \
\ \
(void)argc; \
printf("----\nRUNNING: %s\n", argv[0]);\ printf("----\nRUNNING: %s\n", argv[0]);\
result = name();\ result = name();\
if (result != NULL) {\ if (result != NULL) {\