aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-08-31 17:34:21 +0200
committerSven Gothel <[email protected]>2011-08-31 17:34:21 +0200
commit5bcb6d13859d96649e30e02cbc4e9cbe5417a23e (patch)
tree7e7fc0a07da6d0ab491c2fc93b8841774b982595 /src
parentdde3b106c9c4a8086982546c27d74de7dcd824eb (diff)
revert: a7340fd941b26d633c438cb5adb22f2c30a5cff0
NativeWindow X11 Error Handler: If quiet do not print message on stderr.
Diffstat (limited to 'src')
-rw-r--r--src/nativewindow/native/x11/Xmisc.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/nativewindow/native/x11/Xmisc.c b/src/nativewindow/native/x11/Xmisc.c
index a0aa27e13..cc0b1a1ef 100644
--- a/src/nativewindow/native/x11/Xmisc.c
+++ b/src/nativewindow/native/x11/Xmisc.c
@@ -170,15 +170,14 @@ static int errorHandlerQuiet = 0 ;
static int x11ErrorHandler(Display *dpy, XErrorEvent *e)
{
- const char * errStr = strerror(errno);
-
- fprintf(stderr, "Info: Nativewindow X11 Error: Display %p, Code 0x%X, errno %s\n", dpy, e->error_code, errStr);
- fflush(stderr);
-
if(!errorHandlerQuiet) {
JNIEnv *curEnv = NULL;
JNIEnv *newEnv = NULL;
int envRes ;
+ const char * errStr = strerror(errno);
+
+ fprintf(stderr, "Info: Nativewindow X11 Error: Display %p, Code 0x%X, errno %s\n", dpy, e->error_code, errStr);
+ fflush(stderr);
// retrieve this thread's JNIEnv curEnv - or detect it's detached
envRes = (*jvmHandle)->GetEnv(jvmHandle, (void **) &curEnv, jvmVersion) ;