Trivial change left in editor

This commit is contained in:
Gregory Nutt 2016-07-23 13:53:37 -06:00
parent a932578e76
commit 2d92bffdcc

View File

@ -99,7 +99,7 @@ static const struct file_operations g_gpio_drvrops =
static int gpio_handler(FAR struct gpio_dev_s *dev) static int gpio_handler(FAR struct gpio_dev_s *dev)
{ {
DEBUGASSERT(dev != NULL); DEBUGASSERT(dev != NULL);
kill(dev->gp_pid, dev->gp_signo); (void)kill(dev->gp_pid, dev->gp_signo);
return OK; return OK;
} }