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 85eda14c378b6a2acce26d19fa7073ac509ee386 (commit) from 14374d9981a9e1c76d6f83287ca3d71612c8d659 (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/85eda14c378b6a2acce26d19fa7073ac509ee...
commit 85eda14c378b6a2acce26d19fa7073ac509ee386 Author: Cyril Hrubis metan@ucw.cz Date: Fri Mar 29 11:59:58 2013 +0100
backeds: Make use of GP_FATAL().
Use GP_FATAL() when backend in not compiled in.
diff --git a/libs/backends/GP_SDL.c b/libs/backends/GP_SDL.c index c54bc19..2312564 100644 --- a/libs/backends/GP_SDL.c +++ b/libs/backends/GP_SDL.c @@ -251,7 +251,7 @@ GP_Backend *GP_BackendSDLInit(GP_Size w __attribute__((unused)), uint8_t flags __attribute__((unused)), const char *caption __attribute__((unused))) { - GP_WARN("SDL support not compiled in."); + GP_FATAL("SDL support not compiled in."); return NULL; }
diff --git a/libs/backends/GP_X11.c b/libs/backends/GP_X11.c index 59b28ae..c81f0dd 100644 --- a/libs/backends/GP_X11.c +++ b/libs/backends/GP_X11.c @@ -609,7 +609,7 @@ GP_Backend *GP_BackendX11Init(const char *GP_UNUSED(display), unsigned int GP_UNUSED(h), const char *GP_UNUSED(caption)) { - GP_WARN("FATAL: X11 support not compiled in"); + GP_FATAL("X11 support not compiled in"); return NULL; }
-----------------------------------------------------------------------
Summary of changes: libs/backends/GP_SDL.c | 2 +- libs/backends/GP_X11.c | 2 +- 2 files changed, 2 insertions(+), 2 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.