summaryrefslogtreecommitdiff
path: root/hw/xnest/GCOps.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-12-15 01:56:36 -0800
committerKeith Packard <keithp@keithp.com>2014-01-22 19:56:32 -0800
commitf46c487625e1ffbc78df5153128c68bd6bc41104 (patch)
treed732b487fcc338d9c9502c9cc2b891d01e495a90 /hw/xnest/GCOps.c
parent1f3676a81ef2c52699bdfcf1fb9da7e4e79b00b7 (diff)
hw/xnest: Eliminate shadowed names
Just rename stuff; nothing fancy here. Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'hw/xnest/GCOps.c')
-rw-r--r--hw/xnest/GCOps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xnest/GCOps.c b/hw/xnest/GCOps.c
index fa602314b..e1cf9d65f 100644
--- a/hw/xnest/GCOps.c
+++ b/hw/xnest/GCOps.c
@@ -95,7 +95,7 @@ xnestPutImage(DrawablePtr pDrawable, GCPtr pGC, int depth, int x, int y,
}
static int
-xnestIgnoreErrorHandler (Display *display,
+xnestIgnoreErrorHandler (Display *dpy,
XErrorEvent *event)
{
return False; /* return value is ignored */
@@ -127,7 +127,7 @@ xnestGetImage(DrawablePtr pDrawable, int x, int y, int w, int h,
}
static Bool
-xnestBitBlitPredicate(Display * display, XEvent * event, char *args)
+xnestBitBlitPredicate(Display * dpy, XEvent * event, char *args)
{
return event->type == GraphicsExpose || event->type == NoExpose;
}