This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via cf69cb4b75d228a01a4d7b803e6dfd2d32efbef3 (commit) from 3e29dc184eff61f987adb9bbab4c223a9b07ff5f (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/cf69cb4b75d228a01a4d7b803e6dfd2d32efb...
commit cf69cb4b75d228a01a4d7b803e6dfd2d32efbef3 Author: Cyril Hrubis metan@ucw.cz Date: Sun May 22 12:31:02 2011 +0200
Fix ambiguous else statement.
diff --git a/core/GP_Common.h b/core/GP_Common.h index 19cc9b9..407aa31 100644 --- a/core/GP_Common.h +++ b/core/GP_Common.h @@ -83,11 +83,12 @@ * Internal macro with common code for GP_ASSERT and GP_CHECK. */ #define GP_GENERAL_CHECK(check_cond_, check_message_, ...) do { - if (unlikely(!(check_cond_))) + if (unlikely(!(check_cond_))) { if (#__VA_ARGS__ [0]) GP_ABORT(check_message_ #check_cond_ "n" __VA_ARGS__); else GP_ABORT(check_message_ #check_cond_); + } } while (0)
/*
-----------------------------------------------------------------------
Summary of changes: core/GP_Common.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.