diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2013-02-14 10:09:53 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2013-02-15 11:58:27 +1000 |
commit | 8bbea9f48f43e54c55c8b60ea36bda3134a86af2 (patch) | |
tree | 0717979e716c7cdd65d335a73b95cb93be532239 /Xext | |
parent | 7b79a2e4a11b5c5f0ebaa495828725e235d2b08e (diff) |
Xext: renaming shadowing variable
xvdisp.c: In function 'ProcXvStopVideo':
xvdisp.c:712:11: warning: declaration of 'rc' shadows a previous local
[-Wshadow]
xvdisp.c:705:17: warning: shadowed declaration is here [-Wshadow]
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
Diffstat (limited to 'Xext')
-rw-r--r-- | Xext/xvdisp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Xext/xvdisp.c b/Xext/xvdisp.c index 31b77839f..787729387 100644 --- a/Xext/xvdisp.c +++ b/Xext/xvdisp.c @@ -702,7 +702,7 @@ ProcXvUngrabPort(ClientPtr client) static int ProcXvStopVideo(ClientPtr client) { - int status, rc; + int status, ret; DrawablePtr pDraw; XvPortPtr pPort; @@ -716,9 +716,9 @@ ProcXvStopVideo(ClientPtr client) return status; } - rc = dixLookupDrawable(&pDraw, stuff->drawable, client, 0, DixWriteAccess); - if (rc != Success) - return rc; + ret = dixLookupDrawable(&pDraw, stuff->drawable, client, 0, DixWriteAccess); + if (ret != Success) + return ret; return XvdiStopVideo(client, pPort, pDraw); } |