From 5535a8a30667f29004f6dac512ecfe5869bf5efd Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 3 Jul 2014 13:22:42 -0600 Subject: [PATCH] Remove a warning --- examples/hidkbd/hidkbd_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/hidkbd/hidkbd_main.c b/examples/hidkbd/hidkbd_main.c index adee66c21..67778f683 100644 --- a/examples/hidkbd/hidkbd_main.c +++ b/examples/hidkbd/hidkbd_main.c @@ -1,7 +1,7 @@ /**************************************************************************** * examples/hidkbd/hidkbd_main.c * - * Copyright (C) 2011, 2013 Gregory Nutt. All rights reserved. + * Copyright (C) 2011, 2013-2014 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -314,6 +314,7 @@ int hidkbd_main(int argc, char *argv[]) pid = task_create("usbhost", CONFIG_EXAMPLES_HIDKBD_DEFPRIO, (main_t)hidkbd_waiter, (FAR char * const *)NULL); #endif + UNUSED(pid); /* Now just sleep. Eventually logic here will open the kbd device and * perform the HID keyboard test.