diff options
author | Patrick Steinhardt <ps@pks.im> | 2019-12-10 20:39:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-10 20:39:38 +0100 |
commit | 45c6187cbfdcfee2bcf59a1ed3a853065142f203 (patch) | |
tree | b3f714ab9fab46c3f879a6fcb55ef6ab173701ed /tests/clar_libgit2.h | |
parent | 3828d7afdd08b595584048e8e4dab6ddd4506ed1 (diff) | |
parent | 34c929572a635a6599dc8ff06a87c7c0a324caff (diff) | |
download | libgit2-maint/v0.27.tar.gz |
Merge pull request #5329 from pks-t/ethomson/v0.27.10v0.27.10maint/v0.27
Security release v0.27.10
Diffstat (limited to 'tests/clar_libgit2.h')
-rw-r--r-- | tests/clar_libgit2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/clar_libgit2.h b/tests/clar_libgit2.h index c72d37db3..b0a069355 100644 --- a/tests/clar_libgit2.h +++ b/tests/clar_libgit2.h @@ -29,8 +29,8 @@ * calls that are supposed to fail! */ #define cl_git_fail(expr) do { \ - giterr_clear(); \ if ((expr) == 0) \ + giterr_clear(), \ cl_git_report_failure(0, 0, __FILE__, __LINE__, "Function call succeeded: " #expr); \ } while (0) |