diff options
Diffstat (limited to 'nx-X11/lib/X11/SetPMask.c')
-rw-r--r-- | nx-X11/lib/X11/SetPMask.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nx-X11/lib/X11/SetPMask.c b/nx-X11/lib/X11/SetPMask.c index dc2faf8f3..9f236b00b 100644 --- a/nx-X11/lib/X11/SetPMask.c +++ b/nx-X11/lib/X11/SetPMask.c @@ -30,17 +30,17 @@ in this Software without prior written authorization from The Open Group. #include "Xlibint.h" int -XSetPlaneMask (dpy, gc, planemask) -register Display *dpy; -GC gc; -unsigned long planemask; /* CARD32 */ +XSetPlaneMask ( + register Display *dpy, + GC gc, + unsigned long planemask) /* CARD32 */ { LockDisplay(dpy); if (gc->values.plane_mask != planemask) { gc->values.plane_mask = planemask; gc->dirty |= GCPlaneMask; } - UnlockDisplay(dpy); + UnlockDisplay(dpy); SyncHandle(); return 1; } |