diff options
author | Sven Gothel <[email protected]> | 2012-04-26 21:14:09 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-04-26 21:14:09 +0200 |
commit | 0ad9cd72971f52f7328a8ad35bc9b1d9f9d52d69 (patch) | |
tree | a2bb8309ef262fc057f8bcd14a0bc49d9763d8b4 | |
parent | 03641bd7d15334ad3a4be9c337fc622f15884b05 (diff) |
Bug 577: Disable debug message XInitThreads() called (only enabled in native debug mode).
-rw-r--r-- | src/nativewindow/native/x11/Xmisc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nativewindow/native/x11/Xmisc.c b/src/nativewindow/native/x11/Xmisc.c index d2b24c2dc..439d9b334 100644 --- a/src/nativewindow/native/x11/Xmisc.c +++ b/src/nativewindow/native/x11/Xmisc.c @@ -300,10 +300,10 @@ Java_jogamp_nativewindow_x11_X11Util_initialize0(JNIEnv *env, jclass _unused, jb fprintf(stderr, "Warning: XInitThreads() failed\n"); } else { _xinitThreadsOK=JNI_TRUE; - fprintf(stderr, "Info: XInitThreads() called for concurrent Thread support\n"); + DBG_PRINT( "X11: XInitThreads() called for concurrent Thread support\n"); } } else { - fprintf(stderr, "Info: XInitThreads() _not_ called for concurrent Thread support\n"); + DBG_PRINT( "X11: XInitThreads() _not_ called for concurrent Thread support\n"); } _initClazzAccess(env); |