Remove a warning

This commit is contained in:
Gregory Nutt 2014-07-03 13:22:42 -06:00
parent 4aafdfd280
commit 5535a8a306

View File

@ -1,7 +1,7 @@
/**************************************************************************** /****************************************************************************
* examples/hidkbd/hidkbd_main.c * 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 <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * 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, pid = task_create("usbhost", CONFIG_EXAMPLES_HIDKBD_DEFPRIO,
(main_t)hidkbd_waiter, (FAR char * const *)NULL); (main_t)hidkbd_waiter, (FAR char * const *)NULL);
#endif #endif
UNUSED(pid);
/* Now just sleep. Eventually logic here will open the kbd device and /* Now just sleep. Eventually logic here will open the kbd device and
* perform the HID keyboard test. * perform the HID keyboard test.