This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 1dd7d3dec examples/timer_gpio: fix compilation
1dd7d3dec is described below
commit 1dd7d3dec33cd1a55895e52d571d2a8991038805
Author: raiden00pl <[email protected]>
AuthorDate: Tue Feb 7 14:47:53 2023 +0100
examples/timer_gpio: fix compilation
---
examples/timer_gpio/timer_gpio_main.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/examples/timer_gpio/timer_gpio_main.c
b/examples/timer_gpio/timer_gpio_main.c
index 6667d3019..f08e26843 100644
--- a/examples/timer_gpio/timer_gpio_main.c
+++ b/examples/timer_gpio/timer_gpio_main.c
@@ -184,7 +184,6 @@ static int timer_gpio_daemon(int argc, char *argv[])
notify.event.sigev_notify = SIGEV_SIGNAL;
notify.event.sigev_signo = CONFIG_EXAMPLES_TIMER_GPIO_SIGNO;
notify.event.sigev_value.sival_ptr = NULL;
- notify.oneshot = false;
ret = ioctl(fd_timer, TCIOC_NOTIFICATION,
(unsigned long)((uintptr_t)¬ify));