From: Bartosz Golaszewski Date: Wed, 14 Jun 2017 08:28:57 +0000 (+0200) Subject: gpiomon: fix the displayed name for falling edge events X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c90061a6f273f5ea5365c8c48aa0c5618d638542;p=qemu-gpiodev%2Flibgpiod.git gpiomon: fix the displayed name for falling edge events Remove the unnecessary underscore. Signed-off-by: Bartosz Golaszewski --- diff --git a/src/tools/gpiomon.c b/src/tools/gpiomon.c index 341b3a7..10d396d 100644 --- a/src/tools/gpiomon.c +++ b/src/tools/gpiomon.c @@ -75,7 +75,7 @@ static int event_callback(int type, const struct timespec *ts, void *data) break; case GPIOD_EVENT_CB_FALLING_EDGE: if (cbdata->watch_falling) { - evname = "FALLING_EDGE"; + evname = "FALLING EDGE"; cbdata->num_events_done++; } break;