expedite - warning--

SVN revision: 64592
This commit is contained in:
ChunEon Park 2011-11-01 01:24:55 +00:00
parent 431a59333f
commit 7045c20e5b
4 changed files with 4 additions and 4 deletions

View File

@ -67,7 +67,7 @@ engine_gl_x11_args(const char *engine, int width, int height)
Atom state = XInternAtom(disp, "_NET_WM_STATE_FULLSCREEN", False);
unsigned long data = state;
XChangeProperty(disp, win, prop, XA_ATOM, 32, PropModeReplace,
&data, 1);
(unsigned char*) &data, 1);
}
XStoreName(disp, win, "Expedite - Evas Test Suite");

View File

@ -63,7 +63,7 @@ engine_software_16_x11_args(const char *engine, int width, int height)
Atom state = XInternAtom(disp, "_NET_WM_STATE_FULLSCREEN", False);
unsigned long data = state;
XChangeProperty(disp, win, prop, XA_ATOM, 32, PropModeReplace,
&data, 1);
(unsigned char*) &data, 1);
}
XStoreName(disp, win, "Expedite - Evas Test Suite");

View File

@ -80,7 +80,7 @@ engine_software_xlib_args(const char *engine, int width, int height)
Atom state = XInternAtom(disp, "_NET_WM_STATE_FULLSCREEN", False);
unsigned long data = state;
XChangeProperty(disp, win, prop, XA_ATOM, 32, PropModeReplace,
&data, 1);
(unsigned char*) &data, 1);
}
XStoreName(disp, win, "Expedite - Evas Test Suite");

View File

@ -65,7 +65,7 @@ engine_xrender_x11_args(const char *engine, int width, int height)
Atom state = XInternAtom(disp, "_NET_WM_STATE_FULLSCREEN", False);
unsigned long data = state;
XChangeProperty(disp, win, prop, XA_ATOM, 32, PropModeReplace,
&data, 1);
(unsigned char*) &data, 1);
}
XStoreName(disp, win, "Expedite - Evas Test Suite");