diff options
| author | Peter Pettersson <boretrk@hotmail.com> | 2021-10-22 22:51:59 +0200 |
|---|---|---|
| committer | Peter Pettersson <boretrk@hotmail.com> | 2021-11-15 16:45:40 +0100 |
| commit | 7dcc29fc4652caeb09de39827cfd1a80726b5995 (patch) | |
| tree | 74992ead7b05460f0d6a9fcc894f3dc9a3cbaea7 /tests | |
| parent | 43d9f0e3fe96823d88475fd9edae07732c84dbc8 (diff) | |
| download | libgit2-7dcc29fc4652caeb09de39827cfd1a80726b5995.tar.gz | |
Make enum in src,tests and examples C90 compliant by removing trailing comma.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/clar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/clar.h b/tests/clar.h index 8c22382bd..3f659c2f6 100644 --- a/tests/clar.h +++ b/tests/clar.h @@ -13,12 +13,12 @@ enum cl_test_status { CL_TEST_OK, CL_TEST_FAILURE, CL_TEST_SKIP, - CL_TEST_NOTRUN, + CL_TEST_NOTRUN }; enum cl_output_format { CL_OUTPUT_CLAP, - CL_OUTPUT_TAP, + CL_OUTPUT_TAP }; /** Setup clar environment */ @@ -60,7 +60,7 @@ typedef enum cl_trace_event { CL_TRACE__TEST__END, CL_TRACE__TEST__RUN_BEGIN, CL_TRACE__TEST__RUN_END, - CL_TRACE__TEST__LONGJMP, + CL_TRACE__TEST__LONGJMP } cl_trace_event; typedef void (cl_trace_cb)( |
