From c90061a6f273f5ea5365c8c48aa0c5618d638542 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 14 Jun 2017 10:28:57 +0200 Subject: [PATCH] gpiomon: fix the displayed name for falling edge events Remove the unnecessary underscore. Signed-off-by: Bartosz Golaszewski --- src/tools/gpiomon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2