diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2011-11-09 15:31:57 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2011-11-10 13:21:36 +1000 |
commit | e7cb8f802adf6fc22e7a930c0dfc5c1076781c96 (patch) | |
tree | 76bb9e1198e1ebec9f11e26f97bb7355579e7537 | |
parent | bb4aa1f263ad38c175bfda3b7e6c325260ce3f28 (diff) |
Xext: remove unused variable 'n'
xselinux_ext.c: In function 'SELinuxSendItemsToClient':
xselinux_ext.c:340:16: warning: unused variable 'n' [-Wunused-variable]
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Julien Cristau <jcristau@debian.org>
-rw-r--r-- | Xext/xselinux_ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xext/xselinux_ext.c b/Xext/xselinux_ext.c index 641368a5c..a18a36706 100644 --- a/Xext/xselinux_ext.c +++ b/Xext/xselinux_ext.c @@ -337,7 +337,7 @@ static int SELinuxSendItemsToClient(ClientPtr client, SELinuxListItemRec *items, int size, int count) { - int rc, k, n, pos = 0; + int rc, k, pos = 0; SELinuxListItemsReply rep; CARD32 *buf; |