summaryrefslogtreecommitdiff
path: root/nuttx/sched/work_queue.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/work_queue.c')
-rwxr-xr-xnuttx/sched/work_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/work_queue.c b/nuttx/sched/work_queue.c
index 144c32178..aa4d48889 100755
--- a/nuttx/sched/work_queue.c
+++ b/nuttx/sched/work_queue.c
@@ -38,8 +38,8 @@
****************************************************************************/
#include <nuttx/config.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <queue.h>
#include <assert.h>
#include <errno.h>
@@ -104,7 +104,7 @@
*
****************************************************************************/
-int work_queue(struct work_s *work, worker_t worker, FAR void *arg, uint32 delay)
+int work_queue(struct work_s *work, worker_t worker, FAR void *arg, uint32_t delay)
{
irqstate_t flags;