From: Peter Hutterer Date: Tue, 17 Sep 2013 10:10:18 +0000 (+1000) Subject: tools: make to function calls static X-Git-Tag: libevdev-0.4~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab2ab19ca304db6da914d98376be2749f71cca5c;p=platform%2Fupstream%2Flibevdev.git tools: make to function calls static Signed-off-by: Peter Hutterer --- diff --git a/tools/libevdev-events.c b/tools/libevdev-events.c index f18c387..e1ca539 100644 --- a/tools/libevdev-events.c +++ b/tools/libevdev-events.c @@ -107,7 +107,8 @@ print_props(struct libevdev *dev) } } -int print_event(struct input_event *ev) +static int +print_event(struct input_event *ev) { if (ev->type == EV_SYN) printf("Event: time %ld.%06ld, ++++++++++++++++++++ %s +++++++++++++++\n", @@ -126,7 +127,8 @@ int print_event(struct input_event *ev) return 0; } -int print_sync_event(struct input_event *ev) +static int +print_sync_event(struct input_event *ev) { printf("SYNC: "); print_event(ev);