summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2018-04-12 11:04:10 -0400
committerAdam Jackson <ajax@redhat.com>2018-04-12 11:04:10 -0400
commitf7486f7753f4ddd58adb476985dcf5962e442172 (patch)
tree0ee32eb16000bcd1a7ff48b294161fb8a156b8b1 /src
parent74dbb7bac9357a60e83a3c8993876eab95fd0792 (diff)
downloadlibepoxy-f7486f7753f4ddd58adb476985dcf5962e442172.tar.gz
dispatch: assert, not errx, when we have no context
errx() calls exit(), you'd rather get a backtrace. Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'src')
-rw-r--r--src/dispatch_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispatch_common.c b/src/dispatch_common.c
index bc2fb94..1eccb3b 100644
--- a/src/dispatch_common.c
+++ b/src/dispatch_common.c
@@ -859,7 +859,7 @@ epoxy_get_proc_address(const char *name)
#elif PLATFORM_HAS_GLX
if (epoxy_current_context_is_glx())
return glXGetProcAddressARB((const GLubyte *)name);
- errx(1, "Couldn't find current GLX or EGL context.\n");
+ assert(0 && "Couldn't find current GLX or EGL context.\n");
#endif
return NULL;