diff options
Diffstat (limited to 'include/junitxml.h')
-rw-r--r-- | include/junitxml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/junitxml.h b/include/junitxml.h index 290ce6f..2d94eb8 100644 --- a/include/junitxml.h +++ b/include/junitxml.h @@ -102,7 +102,7 @@ struct JUNIT_Testsuite { * // JUNIT_RESULT_STATE_FAILURE * // JUNIT_RESULT_STATE_ERROR * // JUNIT_RESULT_STATE_SKIPPED - * struct JUNIT_Testcase testcase = testsuite->testcase[i]; + * struct JUNIT_Testcase *testcase = testsuite->testcase[i]; * if (testcase->tc_result_state_type) { * if (testcase->tc_result_state_type == JUNIT_RESULT_STATE_FAILURE) { * // Display information from failed test case |