diff --git a/examples/oneshot/oneshot_main.c b/examples/oneshot/oneshot_main.c index 769f1a7fd..8747f79c9 100644 --- a/examples/oneshot/oneshot_main.c +++ b/examples/oneshot/oneshot_main.c @@ -116,7 +116,6 @@ int oneshot_main(int argc, char *argv[]) unsigned long usecs = CONFIG_EXAMPLE_ONESHOT_DELAY; unsigned long secs; struct oneshot_start_s start; - struct siginfo info; struct timespec ts; uint64_t maxus; sigset_t set; @@ -252,7 +251,7 @@ int oneshot_main(int argc, char *argv[]) /* Wait for the oneshot to fire */ printf("Waiting...\n"); - ret = sigwaitinfo(&set, &info); + ret = sigwaitinfo(&set, NULL); if (ret < 0) { fprintf(stderr, "ERROR: sigwaitinfo failed: %d\n", diff --git a/graphics/traveler/src/trv_input.c b/graphics/traveler/src/trv_input.c index c14dc42af..becf873c3 100644 --- a/graphics/traveler/src/trv_input.c +++ b/graphics/traveler/src/trv_input.c @@ -146,14 +146,13 @@ static struct trv_joystick_s g_trv_joystick; static int trv_joystick_wait(void) { sigset_t set; - struct siginfo value; int ret; /* Wait for a signal */ (void)sigemptyset(&set); (void)sigaddset(&set, CONFIG_GRAPHICS_TRAVELER_JOYSTICK_SIGNO); - ret = sigwaitinfo(&set, &value); + ret = sigwaitinfo(&set, NULL); if (ret < 0) { int errcode = errno;