diff options
Diffstat (limited to 'src/XF86VMode.c')
-rw-r--r-- | src/XF86VMode.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/XF86VMode.c b/src/XF86VMode.c index 48fb6c1..577df00 100644 --- a/src/XF86VMode.c +++ b/src/XF86VMode.c @@ -418,14 +418,8 @@ XF86VidModeGetAllModeLines(Display* dpy, int screen, int* modecount, * GetReq replacement for use with VidMode protocols earlier than 2.0 */ #define GetOldReq(name, oldname, req) \ - WORD64ALIGN\ - if ((dpy->bufptr + SIZEOF(x##oldname##Req)) > dpy->bufmax)\ - _XFlush(dpy);\ - req = (x##oldname##Req *)(dpy->last_req = dpy->bufptr);\ - req->reqType = X_##name;\ - req->length = (SIZEOF(x##oldname##Req))>>2;\ - dpy->bufptr += SIZEOF(x##oldname##Req);\ - dpy->request++ + req = (x##oldname##Req *) \ + _XGetRequest(dpy, X_##name, SIZEOF(x##oldname##Req)) Bool XF86VidModeAddModeLine(Display *dpy, int screen, |