diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-24 10:06:37 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-24 10:06:37 -0700 |
commit | 3d05b29e9e1431f11cb2c2cb960380586c6ba494 (patch) | |
tree | 6de4c7ef68976f0721b5d2273b3bb7b596cb4181 | |
parent | d99cd9262291137a9e742166fdfedfeb74f08e57 (diff) |
Add noreturn attribute to Syntax function
Suggested by clang:
xgamma.c:48:1: warning: function 'Syntax' could be declared with attribute
'noreturn' [-Wmissing-noreturn]
{
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | xgamma.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 6f79b2f..4ee5820 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(XGAMMA, x11 xxf86vm) +PKG_CHECK_MODULES(XGAMMA, [x11 xxf86vm xproto >= 7.0.17]) AC_CONFIG_FILES([ Makefile @@ -43,7 +43,7 @@ static int EventBase, ErrorBase; #define GAMMA_MIN 0.1 #define GAMMA_MAX 10.0 -static void +static void _X_NORETURN Syntax(void) { fprintf (stderr, "usage: %s [-options]\n\n", |