Skip to content

Commit

Permalink
Fixed compiling with the new X11 symbol wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 20, 2013
1 parent 6a3478c commit a25b519
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/x11/SDL_x11events.c
Expand Up @@ -524,12 +524,12 @@ X11_DispatchEvent(_THIS)
long border_top = 0;
long border_bottom = 0;
if (data->xwindow) {
Atom _net_frame_extents = XInternAtom(display, "_NET_FRAME_EXTENTS", 0);
Atom _net_frame_extents = X11_XInternAtom(display, "_NET_FRAME_EXTENTS", 0);
Atom type;
int format;
unsigned long nitems, bytes_after;
unsigned char *property;
XGetWindowProperty(display, data->xwindow,
X11_XGetWindowProperty(display, data->xwindow,
_net_frame_extents, 0, 16, 0,
XA_CARDINAL, &type, &format,
&nitems, &bytes_after, &property);
Expand Down

0 comments on commit a25b519

Please sign in to comment.