diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2010-04-18 17:34:27 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2010-04-20 09:55:55 -0700 |
commit | 4c32692b4acfb02d8ef9ebbe0b999a2a59bc2fd7 (patch) | |
tree | a614f41cc9a58538a8dccb6d484f823f6ef90452 /xts5/Xlib7/XcmsStoreColor.m | |
parent | c4049fde7c2074085a6079b780cb48bdc3a58bc4 (diff) |
xts5: Fix "unused variable" warnings.
There are still two left:
XDrawRectangle/XDrawRectangle.c:4211: warning: unused variable ‘jssav’
XDrawRectangles/XDrawRectangles.c:4292: warning: unused variable ‘jssav’
These are a little harder to fix because the declaration is generated but jssav
is only used in some of the tests.
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'xts5/Xlib7/XcmsStoreColor.m')
-rw-r--r-- | xts5/Xlib7/XcmsStoreColor.m | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/xts5/Xlib7/XcmsStoreColor.m b/xts5/Xlib7/XcmsStoreColor.m index 535a6c72..1d08f221 100644 --- a/xts5/Xlib7/XcmsStoreColor.m +++ b/xts5/Xlib7/XcmsStoreColor.m @@ -104,7 +104,6 @@ XcmsColor color ; extern int chkflg; extern int signal_status(); extern int unexp_err(); - extern char *svc_user_arg; extern char *strcpy(); /****** @@ -112,14 +111,11 @@ XcmsColor color ; ******/ char fmtstr[256], *call_string; union msglst fmt_lst[1]; - int skip_pixcheck; int ss_status, /* save stat return status */ stat_status, /* check stat return status */ - setup_status, - cleanup_status, - i1; + cleanup_status; Status svc_ret_value; |