test: simple-xinit: add _X_NORETURN
fix warning: > ../test/simple-xinit.c:58:1: warning: function 'usage' could be declared with attribute 'noreturn' [-Wmissing-noreturn] Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1429>
This commit is contained in:
parent
58117a0c3e
commit
f7a97a7ab0
|
@ -2,6 +2,7 @@ simple_xinit = executable(
|
||||||
'simple-xinit',
|
'simple-xinit',
|
||||||
'simple-xinit.c',
|
'simple-xinit.c',
|
||||||
include_directories: inc,
|
include_directories: inc,
|
||||||
|
dependencies: [ xproto_dep ],
|
||||||
)
|
)
|
||||||
|
|
||||||
piglit_env = environment()
|
piglit_env = environment()
|
||||||
|
|
|
@ -25,6 +25,8 @@
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <X11/Xfuncproto.h>
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
@ -53,7 +55,7 @@ kill_server(int server_pid)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
_X_NORETURN static void
|
||||||
usage(int argc, char **argv)
|
usage(int argc, char **argv)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "%s <client command> -- <server command>\n", argv[0]);
|
fprintf(stderr, "%s <client command> -- <server command>\n", argv[0]);
|
||||||
|
|
Loading…
Reference in New Issue