tools: make to function calls static

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2013-09-17 20:10:18 +10:00
parent 64efc0b5bf
commit ab2ab19ca3

View file

@ -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) if (ev->type == EV_SYN)
printf("Event: time %ld.%06ld, ++++++++++++++++++++ %s +++++++++++++++\n", printf("Event: time %ld.%06ld, ++++++++++++++++++++ %s +++++++++++++++\n",
@ -126,7 +127,8 @@ int print_event(struct input_event *ev)
return 0; return 0;
} }
int print_sync_event(struct input_event *ev) static int
print_sync_event(struct input_event *ev)
{ {
printf("SYNC: "); printf("SYNC: ");
print_event(ev); print_event(ev);