summaryrefslogtreecommitdiff
path: root/tools/shared.h
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2016-12-05 15:31:37 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2016-12-06 08:06:27 +1000
commit6e1db369ee58a8bc5d8b3c26145f12503f1c3810 (patch)
treeff3061854091186fa4e687b290c4029ae02cb825 /tools/shared.h
parent5552a6f145b9cb9d8e00f2fdf25e0acb75fe6c72 (diff)
downloadlibinput-6e1db369ee58a8bc5d8b3c26145f12503f1c3810.tar.gz
tools: fix prototype for tools_usage
../tools/shared.h:66:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes] void tools_usage(); Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'tools/shared.h')
-rw-r--r--tools/shared.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.h b/tools/shared.h
index c0bb1036..17fdf37a 100644
--- a/tools/shared.h
+++ b/tools/shared.h
@@ -63,6 +63,6 @@ int tools_parse_args(int argc, char **argv, struct tools_context *context);
struct libinput* tools_open_backend(struct tools_context *context);
void tools_device_apply_config(struct libinput_device *device,
struct tools_options *options);
-void tools_usage();
+void tools_usage(void);
#endif