diff options
author | Keith Packard <keithp@keithp.com> | 2013-12-15 01:56:36 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-01-22 19:56:32 -0800 |
commit | f46c487625e1ffbc78df5153128c68bd6bc41104 (patch) | |
tree | d732b487fcc338d9c9502c9cc2b891d01e495a90 /hw/xnest/Window.c | |
parent | 1f3676a81ef2c52699bdfcf1fb9da7e4e79b00b7 (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/Window.c')
-rw-r--r-- | hw/xnest/Window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xnest/Window.c b/hw/xnest/Window.c index c33cbaa2b..fc87e823e 100644 --- a/hw/xnest/Window.c +++ b/hw/xnest/Window.c @@ -380,7 +380,7 @@ xnestClipNotify(WindowPtr pWin, int dx, int dy) } static Bool -xnestWindowExposurePredicate(Display * display, XEvent * event, XPointer ptr) +xnestWindowExposurePredicate(Display * dpy, XEvent * event, XPointer ptr) { return (event->type == Expose && event->xexpose.window == *(Window *) ptr); } |