diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-09-06 00:13:44 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-09-06 00:13:44 -0700 |
commit | 1519db19e3d1ed1efc07c8c428c1e9013d93f285 (patch) | |
tree | 7cceb6548888798664171e3b4b70adcbe9aa97f4 /configure.ac | |
parent | 8c669cdff3f32755cb9c383f5b16397a33183e64 (diff) |
Mark arguments to catch_window_errors as unused
Arguments are required by the callback form, but not needed in this case.
Clears clang compliants:
xkill.c:328:30: warning: unused parameter 'dpy' [-Wunused-parameter]
catch_window_errors(Display *dpy, XErrorEvent *ev)
^
xkill.c:328:48: warning: unused parameter 'ev' [-Wunused-parameter]
catch_window_errors(Display *dpy, XErrorEvent *ev)
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6b4bb5c..033d445 100644 --- a/configure.ac +++ b/configure.ac @@ -39,7 +39,7 @@ XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS # Checks for pkg-config packages -PKG_CHECK_MODULES(XKILL, [x11 xmuu xproto >= 7.0.17]) +PKG_CHECK_MODULES(XKILL, [x11 xmuu xproto >= 7.0.22]) AC_CONFIG_FILES([ Makefile |