Skip to content

Commit 0eb1559

Browse files
committed
Merge remote-tracking branch 'yselkowitz/master'
I checked this patch with diff -w to check that it only affected whitespace.
2 parents 386e4d7 + ea1d76d commit 0eb1559

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+338
-338
lines changed

Xext/saver.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ ScreenSaverSetAttributes(ClientPtr client)
837837
if ((visual != ancwopt->visual) || (depth != pParent->drawable.depth)) {
838838
fOK = FALSE;
839839
for (idepth = 0; idepth < pScreen->numDepths; idepth++) {
840-
pDepth = (DepthPtr) & pScreen->allowedDepths[idepth];
840+
pDepth = (DepthPtr) &pScreen->allowedDepths[idepth];
841841
if ((depth == pDepth->depth) || (depth == 0)) {
842842
for (ivisual = 0; ivisual < pDepth->numVids; ivisual++) {
843843
if (visual == pDepth->vids[ivisual]) {

Xi/extinit.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -649,15 +649,15 @@ SDeviceChangedEvent(xXIDeviceChangedEvent * from, xXIDeviceChangedEvent * to)
649649
*to = *from;
650650
memcpy(&to[1], &from[1], from->length * 4);
651651

652-
any = (xXIAnyInfo *) & to[1];
652+
any = (xXIAnyInfo *) &to[1];
653653
for (i = 0; i < to->num_classes; i++) {
654654
int length = any->length;
655655

656656
switch (any->type) {
657657
case KeyClass:
658658
{
659659
xXIKeyInfo *ki = (xXIKeyInfo *) any;
660-
uint32_t *key = (uint32_t *) & ki[1];
660+
uint32_t *key = (uint32_t *) &ki[1];
661661

662662
for (j = 0; j < ki->num_keycodes; j++, key++)
663663
swapl(key);
@@ -768,7 +768,7 @@ SDeviceHierarchyEvent(xXIHierarchyEvent * from, xXIHierarchyEvent * to)
768768
swapl(&to->flags);
769769
swaps(&to->num_info);
770770

771-
info = (xXIHierarchyInfo *) & to[1];
771+
info = (xXIHierarchyInfo *) &to[1];
772772
for (i = 0; i < from->num_info; i++) {
773773
swaps(&info->deviceid);
774774
swaps(&info->attachment);

Xi/gtmotion.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ ProcXGetDeviceMotionEvents(ClientPtr client)
131131
num_events = v->numMotionEvents;
132132
if (num_events) {
133133
size = sizeof(Time) + (axes * sizeof(INT32));
134-
rep.nEvents = GetMotionHistory(dev, (xTimecoord **) & coords, /* XXX */
134+
rep.nEvents = GetMotionHistory(dev, (xTimecoord **) &coords, /* XXX */
135135
start.milliseconds, stop.milliseconds,
136136
(ScreenPtr) NULL, FALSE);
137137
}

Xi/xichangehierarchy.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ XISendDeviceHierarchyEvent(int flags[MAXDEVICES])
8080
ev->flags = 0;
8181
ev->num_info = inputInfo.numDevices;
8282

83-
info = (xXIHierarchyInfo *) & ev[1];
83+
info = (xXIHierarchyInfo *) &ev[1];
8484
for (dev = inputInfo.devices; dev; dev = dev->next) {
8585
info->deviceid = dev->id;
8686
info->enabled = dev->enabled;

Xi/xiquerydevice.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ ListKeyInfo(DeviceIntPtr dev, xXIKeyInfo * info)
304304
info->length = sizeof(xXIKeyInfo) / 4 + info->num_keycodes;
305305
info->sourceid = dev->key->sourceid;
306306

307-
kc = (uint32_t *) & info[1];
307+
kc = (uint32_t *) &info[1];
308308
for (i = xkb->min_key_code; i <= xkb->max_key_code; i++, kc++)
309309
*kc = i;
310310

@@ -321,7 +321,7 @@ SwapKeyInfo(DeviceIntPtr dev, xXIKeyInfo * info)
321321
swaps(&info->length);
322322
swaps(&info->sourceid);
323323

324-
for (i = 0, key = (uint32_t *) & info[1]; i < info->num_keycodes;
324+
for (i = 0, key = (uint32_t *) &info[1]; i < info->num_keycodes;
325325
i++, key++)
326326
swapl(key);
327327

dix/colormap.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -658,15 +658,15 @@ FreeCell(ColormapPtr pmap, Pixel i, int channel)
658658
default: /* so compiler can see that everything gets initialized */
659659
case PSEUDOMAP:
660660
case REDMAP:
661-
pent = (EntryPtr) & pmap->red[i];
661+
pent = (EntryPtr) &pmap->red[i];
662662
pCount = &pmap->freeRed;
663663
break;
664664
case GREENMAP:
665-
pent = (EntryPtr) & pmap->green[i];
665+
pent = (EntryPtr) &pmap->green[i];
666666
pCount = &pmap->freeGreen;
667667
break;
668668
case BLUEMAP:
669-
pent = (EntryPtr) & pmap->blue[i];
669+
pent = (EntryPtr) &pmap->blue[i];
670670
pCount = &pmap->freeBlue;
671671
break;
672672
}
@@ -1400,7 +1400,7 @@ QueryColors(ColormapPtr pmap, int count, Pixel * ppixIn, xrgb * prgbList,
14001400
errVal = BadValue;
14011401
}
14021402
else {
1403-
pent = (EntryPtr) & pmap->red[pixel];
1403+
pent = (EntryPtr) &pmap->red[pixel];
14041404
if (pent->fShared) {
14051405
prgb->red = pent->co.shco.red->color;
14061406
prgb->green = pent->co.shco.green->color;

dix/devices.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ AddInputDevice(ClientPtr client, DeviceProc deviceProc, Bool autoStart)
283283
dev->coreEvents = TRUE;
284284

285285
/* sprite defaults */
286-
dev->spriteInfo = (SpriteInfoPtr) & dev[1];
286+
dev->spriteInfo = (SpriteInfoPtr) &dev[1];
287287

288288
/* security creation/labeling check
289289
*/
@@ -944,7 +944,7 @@ CloseDevice(DeviceIntPtr dev)
944944

945945
free(dev->name);
946946

947-
classes = (ClassesPtr) & dev->key;
947+
classes = (ClassesPtr) &dev->key;
948948
FreeAllDeviceClasses(classes);
949949

950950
if (IsMaster(dev)) {

dix/dispatch.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2454,7 +2454,7 @@ ProcListInstalledColormaps(ClientPtr client)
24542454
preply->type = X_Reply;
24552455
preply->sequenceNumber = client->sequence;
24562456
nummaps = (*pWin->drawable.pScreen->ListInstalledColormaps)
2457-
(pWin->drawable.pScreen, (Colormap *) & preply[1]);
2457+
(pWin->drawable.pScreen, (Colormap *) &preply[1]);
24582458
preply->nColormaps = nummaps;
24592459
preply->length = nummaps;
24602460
WriteReplyToClient(client, sizeof(xListInstalledColormapsReply), preply);

dix/eventconvert.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ appendKeyInfo(DeviceChangedEvent *dce, xXIKeyInfo * info)
459459
info->length = sizeof(xXIKeyInfo) / 4 + info->num_keycodes;
460460
info->sourceid = dce->sourceid;
461461

462-
kc = (uint32_t *) & info[1];
462+
kc = (uint32_t *) &info[1];
463463
for (i = 0; i < info->num_keycodes; i++)
464464
*kc++ = i + dce->keys.min_keycode;
465465

dix/window.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ CreateWindow(Window wid, WindowPtr pParent, int x, int y, unsigned w,
680680
if ((visual != ancwopt->visual) || (depth != pParent->drawable.depth)) {
681681
fOK = FALSE;
682682
for (idepth = 0; idepth < pScreen->numDepths; idepth++) {
683-
pDepth = (DepthPtr) & pScreen->allowedDepths[idepth];
683+
pDepth = (DepthPtr) &pScreen->allowedDepths[idepth];
684684
if ((depth == pDepth->depth) || (depth == 0)) {
685685
for (ivisual = 0; ivisual < pDepth->numVids; ivisual++) {
686686
if (visual == pDepth->vids[ivisual]) {

exa/exa.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -620,8 +620,8 @@ exaCreateGC(GCPtr pGC)
620620

621621
swap(pExaScr, pScreen, CreateGC);
622622
if ((ret = (*pScreen->CreateGC) (pGC))) {
623-
wrap(pExaGC, pGC, funcs, (GCFuncs *) & exaGCFuncs);
624-
wrap(pExaGC, pGC, ops, (GCOps *) & exaOps);
623+
wrap(pExaGC, pGC, funcs, (GCFuncs *) &exaGCFuncs);
624+
wrap(pExaGC, pGC, ops, (GCOps *) &exaOps);
625625
}
626626
swap(pExaScr, pScreen, CreateGC);
627627

fb/fbgc.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ const GCOps fbGCOps = {
6464
Bool
6565
fbCreateGC(GCPtr pGC)
6666
{
67-
pGC->ops = (GCOps *) & fbGCOps;
68-
pGC->funcs = (GCFuncs *) & fbGCFuncs;
67+
pGC->ops = (GCOps *) &fbGCOps;
68+
pGC->funcs = (GCFuncs *) &fbGCFuncs;
6969

7070
/* fb wants to translate before scan conversion */
7171
pGC->miTranslate = 1;

glx/glapi.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ init_glapi_relocs(void)
490490
char run_time_patch[] = {
491491
0x65, 0xa1, 0, 0, 0, 0 /* movl %gs:0,%eax */
492492
};
493-
GLuint *offset = (GLuint *) & run_time_patch[2]; /* 32-bits for x86/32 */
493+
GLuint *offset = (GLuint *) &run_time_patch[2]; /* 32-bits for x86/32 */
494494
const GLubyte *const get_disp = (const GLubyte *) run_time_patch;
495495
GLubyte *curr_func = (GLubyte *) gl_dispatch_functions_start;
496496

glx/glxdri.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ __glXDRIscreenProbe(ScreenPtr pScreen)
10691069

10701070
/* Map the framebuffer region. */
10711071
status = drmMap(fd, hFB, framebuffer.size,
1072-
(drmAddressPtr) & framebuffer.base);
1072+
(drmAddressPtr) &framebuffer.base);
10731073
if (status != 0) {
10741074
LogMessage(X_ERROR, "AIGLX error: drmMap of framebuffer failed (%s)\n",
10751075
strerror(-status));

glx/indirect_program.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ DoGetProgramString(struct __GLXclientStateRec *cl, GLbyte * pc,
109109
}
110110
else {
111111
__GLX_BEGIN_REPLY(compsize);
112-
((xGLXGetTexImageReply *) & __glXReply)->width = compsize;
112+
((xGLXGetTexImageReply *) &__glXReply)->width = compsize;
113113
__GLX_SEND_HEADER();
114114
__GLX_SEND_VOID_ARRAY(compsize);
115115
}

glx/indirect_texture_compression.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ __glXDisp_GetCompressedTexImageARB(struct __GLXclientStateRec *cl, GLbyte * pc)
7272
}
7373
else {
7474
__GLX_BEGIN_REPLY(compsize);
75-
((xGLXGetTexImageReply *) & __glXReply)->width = compsize;
75+
((xGLXGetTexImageReply *) &__glXReply)->width = compsize;
7676
__GLX_SEND_HEADER();
7777
__GLX_SEND_VOID_ARRAY(compsize);
7878
}
@@ -118,7 +118,7 @@ __glXDispSwap_GetCompressedTexImageARB(struct __GLXclientStateRec *cl,
118118
}
119119
else {
120120
__GLX_BEGIN_REPLY(compsize);
121-
((xGLXGetTexImageReply *) & __glXReply)->width = compsize;
121+
((xGLXGetTexImageReply *) &__glXReply)->width = compsize;
122122
__GLX_SEND_HEADER();
123123
__GLX_SEND_VOID_ARRAY(compsize);
124124
}

glx/renderpixswap.c

+10-10
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ __glXDispSwap_SeparableFilter2D(GLbyte * pc)
5151

5252
hdrlen = __GLX_PAD(__GLX_CONV_FILT_CMD_HDR_SIZE);
5353

54-
__GLX_SWAP_INT((GLbyte *) & hdr->rowLength);
55-
__GLX_SWAP_INT((GLbyte *) & hdr->skipRows);
56-
__GLX_SWAP_INT((GLbyte *) & hdr->skipPixels);
57-
__GLX_SWAP_INT((GLbyte *) & hdr->alignment);
54+
__GLX_SWAP_INT((GLbyte *) &hdr->rowLength);
55+
__GLX_SWAP_INT((GLbyte *) &hdr->skipRows);
56+
__GLX_SWAP_INT((GLbyte *) &hdr->skipPixels);
57+
__GLX_SWAP_INT((GLbyte *) &hdr->alignment);
5858

59-
__GLX_SWAP_INT((GLbyte *) & hdr->target);
60-
__GLX_SWAP_INT((GLbyte *) & hdr->internalformat);
61-
__GLX_SWAP_INT((GLbyte *) & hdr->width);
62-
__GLX_SWAP_INT((GLbyte *) & hdr->height);
63-
__GLX_SWAP_INT((GLbyte *) & hdr->format);
64-
__GLX_SWAP_INT((GLbyte *) & hdr->type);
59+
__GLX_SWAP_INT((GLbyte *) &hdr->target);
60+
__GLX_SWAP_INT((GLbyte *) &hdr->internalformat);
61+
__GLX_SWAP_INT((GLbyte *) &hdr->width);
62+
__GLX_SWAP_INT((GLbyte *) &hdr->height);
63+
__GLX_SWAP_INT((GLbyte *) &hdr->format);
64+
__GLX_SWAP_INT((GLbyte *) &hdr->type);
6565

6666
/*
6767
** Just invert swapBytes flag; the GL will figure out if it needs to swap

glx/singlepix.c

+9-9
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@ __glXDisp_GetTexImage(__GLXclientState * cl, GLbyte * pc)
150150
}
151151
else {
152152
__GLX_BEGIN_REPLY(compsize);
153-
((xGLXGetTexImageReply *) & __glXReply)->width = width;
154-
((xGLXGetTexImageReply *) & __glXReply)->height = height;
155-
((xGLXGetTexImageReply *) & __glXReply)->depth = depth;
153+
((xGLXGetTexImageReply *) &__glXReply)->width = width;
154+
((xGLXGetTexImageReply *) &__glXReply)->height = height;
155+
((xGLXGetTexImageReply *) &__glXReply)->depth = depth;
156156
__GLX_SEND_HEADER();
157157
__GLX_SEND_VOID_ARRAY(compsize);
158158
}
@@ -252,8 +252,8 @@ GetSeparableFilter(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag)
252252
}
253253
else {
254254
__GLX_BEGIN_REPLY(compsize + compsize2);
255-
((xGLXGetSeparableFilterReply *) & __glXReply)->width = width;
256-
((xGLXGetSeparableFilterReply *) & __glXReply)->height = height;
255+
((xGLXGetSeparableFilterReply *) &__glXReply)->width = width;
256+
((xGLXGetSeparableFilterReply *) &__glXReply)->height = height;
257257
__GLX_SEND_HEADER();
258258
__GLX_SEND_VOID_ARRAY(compsize + compsize2);
259259
}
@@ -330,8 +330,8 @@ GetConvolutionFilter(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag)
330330
}
331331
else {
332332
__GLX_BEGIN_REPLY(compsize);
333-
((xGLXGetConvolutionFilterReply *) & __glXReply)->width = width;
334-
((xGLXGetConvolutionFilterReply *) & __glXReply)->height = height;
333+
((xGLXGetConvolutionFilterReply *) &__glXReply)->width = width;
334+
((xGLXGetConvolutionFilterReply *) &__glXReply)->height = height;
335335
__GLX_SEND_HEADER();
336336
__GLX_SEND_VOID_ARRAY(compsize);
337337
}
@@ -399,7 +399,7 @@ GetHistogram(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag)
399399
}
400400
else {
401401
__GLX_BEGIN_REPLY(compsize);
402-
((xGLXGetHistogramReply *) & __glXReply)->width = width;
402+
((xGLXGetHistogramReply *) &__glXReply)->width = width;
403403
__GLX_SEND_HEADER();
404404
__GLX_SEND_VOID_ARRAY(compsize);
405405
}
@@ -528,7 +528,7 @@ GetColorTable(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag)
528528
}
529529
else {
530530
__GLX_BEGIN_REPLY(compsize);
531-
((xGLXGetColorTableReply *) & __glXReply)->width = width;
531+
((xGLXGetColorTableReply *) &__glXReply)->width = width;
532532
__GLX_SEND_HEADER();
533533
__GLX_SEND_VOID_ARRAY(compsize);
534534
}

glx/singlepixswap.c

+9-9
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ __glXDispSwap_GetTexImage(__GLXclientState * cl, GLbyte * pc)
176176
__GLX_SWAP_INT(&width);
177177
__GLX_SWAP_INT(&height);
178178
__GLX_SWAP_INT(&depth);
179-
((xGLXGetTexImageReply *) & __glXReply)->width = width;
180-
((xGLXGetTexImageReply *) & __glXReply)->height = height;
181-
((xGLXGetTexImageReply *) & __glXReply)->depth = depth;
179+
((xGLXGetTexImageReply *) &__glXReply)->width = width;
180+
((xGLXGetTexImageReply *) &__glXReply)->height = height;
181+
((xGLXGetTexImageReply *) &__glXReply)->depth = depth;
182182
__GLX_SEND_HEADER();
183183
__GLX_SEND_VOID_ARRAY(compsize);
184184
}
@@ -290,8 +290,8 @@ GetSeparableFilter(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag)
290290
__GLX_SWAP_REPLY_HEADER();
291291
__GLX_SWAP_INT(&width);
292292
__GLX_SWAP_INT(&height);
293-
((xGLXGetSeparableFilterReply *) & __glXReply)->width = width;
294-
((xGLXGetSeparableFilterReply *) & __glXReply)->height = height;
293+
((xGLXGetSeparableFilterReply *) &__glXReply)->width = width;
294+
((xGLXGetSeparableFilterReply *) &__glXReply)->height = height;
295295
__GLX_SEND_VOID_ARRAY(compsize + compsize2);
296296
}
297297

@@ -376,8 +376,8 @@ GetConvolutionFilter(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag)
376376
__GLX_SWAP_REPLY_HEADER();
377377
__GLX_SWAP_INT(&width);
378378
__GLX_SWAP_INT(&height);
379-
((xGLXGetConvolutionFilterReply *) & __glXReply)->width = width;
380-
((xGLXGetConvolutionFilterReply *) & __glXReply)->height = height;
379+
((xGLXGetConvolutionFilterReply *) &__glXReply)->width = width;
380+
((xGLXGetConvolutionFilterReply *) &__glXReply)->height = height;
381381
__GLX_SEND_VOID_ARRAY(compsize);
382382
}
383383

@@ -452,7 +452,7 @@ GetHistogram(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag)
452452
__GLX_BEGIN_REPLY(compsize);
453453
__GLX_SWAP_REPLY_HEADER();
454454
__GLX_SWAP_INT(&width);
455-
((xGLXGetHistogramReply *) & __glXReply)->width = width;
455+
((xGLXGetHistogramReply *) &__glXReply)->width = width;
456456
__GLX_SEND_VOID_ARRAY(compsize);
457457
}
458458

@@ -594,7 +594,7 @@ GetColorTable(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag)
594594
__GLX_BEGIN_REPLY(compsize);
595595
__GLX_SWAP_REPLY_HEADER();
596596
__GLX_SWAP_INT(&width);
597-
((xGLXGetColorTableReply *) & __glXReply)->width = width;
597+
((xGLXGetColorTableReply *) &__glXReply)->width = width;
598598
__GLX_SEND_VOID_ARRAY(compsize);
599599
}
600600

glx/xfont.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ __glXDisp_UseXFont(__GLXclientState * cl, GLbyte * pc)
168168
}
169169

170170
CALL_GetIntegerv(GET_DISPATCH(),
171-
(GL_LIST_INDEX, (GLint *) & currentListIndex));
171+
(GL_LIST_INDEX, (GLint *) &currentListIndex));
172172
if (currentListIndex != 0) {
173173
/*
174174
** A display list is currently being made. It is an error

hw/dmx/config/Canvas.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ CanvasExpose(Widget w, XEvent * event, Region region)
7676

7777
if (!XtIsRealized(w))
7878
return;
79-
XtCallCallbacks(w, XtNcanvasExposeCallback, (XtPointer) & data);
79+
XtCallCallbacks(w, XtNcanvasExposeCallback, (XtPointer) &data);
8080
}
8181

8282
static void
@@ -162,4 +162,4 @@ CanvasClassRec canvasClassRec = {
162162
}
163163
};
164164

165-
WidgetClass canvasWidgetClass = (WidgetClass) & canvasClassRec;
165+
WidgetClass canvasWidgetClass = (WidgetClass) &canvasClassRec;

hw/dmx/dmx_glxvisuals.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ GetGLXVisualConfigs(Display * dpy, int screen, int *nconfigs)
6161
req->reqType = majorOpcode;
6262
req->glxCode = X_GLXGetVisualConfigs;
6363
req->screen = screen;
64-
if (!_XReply(dpy, (xReply *) & reply, 0, False)) {
64+
if (!_XReply(dpy, (xReply *) &reply, 0, False)) {
6565
/* Something is busted. Punt. */
6666
UnlockDisplay(dpy);
6767
SyncHandle();
@@ -252,7 +252,7 @@ GetGLXFBConfigs(Display * dpy, int glxMajorOpcode, int *nconfigs)
252252

253253
*nconfigs = 0;
254254

255-
if (!_XReply(dpy, (xReply *) & reply, 0, False)) {
255+
if (!_XReply(dpy, (xReply *) &reply, 0, False)) {
256256
/* Something is busted. Punt. */
257257
UnlockDisplay(dpy);
258258
SyncHandle();

hw/dmx/dmxwindow.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ dmxWindowExposures(WindowPtr pWindow, RegionPtr prgn, RegionPtr other_exposed)
786786
if (pWinPriv->window) {
787787
while (XCheckIfEvent(dmxScreen->beDisplay, &ev,
788788
dmxWindowExposurePredicate,
789-
(XPointer) & pWinPriv->window)) {
789+
(XPointer) &pWinPriv->window)) {
790790
/* Handle expose events -- this should not be necessary
791791
since the base window in which the root window was
792792
created is guaranteed to be on top (override_redirect),

0 commit comments

Comments
 (0)