|
From: <ma...@us...> - 2011-10-13 22:05:23
|
Revision: 3671
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3671&view=rev
Author: matzon
Date: 2011-10-13 22:05:17 +0000 (Thu, 13 Oct 2011)
Log Message:
-----------
applied patch by xranby to remove warnings
Modified Paths:
--------------
trunk/LWJGL/src/native/linux/opengl/org_lwjgl_opengl_Display.c
trunk/LWJGL/src/native/linux/opengles/org_lwjgl_opengl_Display.c
Modified: trunk/LWJGL/src/native/linux/opengl/org_lwjgl_opengl_Display.c
===================================================================
--- trunk/LWJGL/src/native/linux/opengl/org_lwjgl_opengl_Display.c 2011-10-13 16:53:53 UTC (rev 3670)
+++ trunk/LWJGL/src/native/linux/opengl/org_lwjgl_opengl_Display.c 2011-10-13 22:05:17 UTC (rev 3671)
@@ -178,7 +178,7 @@
XChangeProperty(disp, window,
XInternAtom(disp, "_NET_WM_NAME", False),
XInternAtom(disp, "UTF8_STRING", False),
- 8, PropModeReplace, (const char *)(intptr_t)title,
+ 8, PropModeReplace, (const unsigned char *)(intptr_t)title,
len);
}
Modified: trunk/LWJGL/src/native/linux/opengles/org_lwjgl_opengl_Display.c
===================================================================
--- trunk/LWJGL/src/native/linux/opengles/org_lwjgl_opengl_Display.c 2011-10-13 16:53:53 UTC (rev 3670)
+++ trunk/LWJGL/src/native/linux/opengles/org_lwjgl_opengl_Display.c 2011-10-13 22:05:17 UTC (rev 3671)
@@ -175,7 +175,7 @@
XChangeProperty(disp, window,
XInternAtom(disp, "_NET_WM_NAME", False),
XInternAtom(disp, "UTF8_STRING", False),
- 8, PropModeReplace, (const char *)(intptr_t)title,
+ 8, PropModeReplace, (const unsigned char *)(intptr_t)title,
len);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|