From: Jonas Ådahl Date: Tue, 15 Jul 2014 19:53:26 +0000 (+0200) Subject: event-debug: Silence compiler warnings X-Git-Tag: 0.5.0~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85c4500494777a768a10cd4659ef2a6e91cb9258;p=platform%2Fupstream%2Flibinput.git event-debug: Silence compiler warnings Signed-off-by: Jonas Ådahl --- diff --git a/tools/event-debug.c b/tools/event-debug.c index 3eade366..fb22f3bd 100644 --- a/tools/event-debug.c +++ b/tools/event-debug.c @@ -199,7 +199,7 @@ static void print_event_header(struct libinput_event *ev) { struct libinput_device *dev = libinput_event_get_device(ev); - const char *type; + const char *type = NULL; switch(libinput_event_get_type(ev)) { case LIBINPUT_EVENT_NONE: @@ -428,7 +428,7 @@ handle_and_print_events(struct libinput *li) return rc; } -void +static void mainloop(struct libinput *li) { struct pollfd fds[2];