From 59f367c060c408a9c9f2ee6db3a4fd498c4a2724 Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 14 Dec 2009 18:39:29 +0000 Subject: Switching to C99 stdint.h types git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2336 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/sched/sched_reprioritize.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nuttx/sched/sched_reprioritize.c') diff --git a/nuttx/sched/sched_reprioritize.c b/nuttx/sched/sched_reprioritize.c index c9e165104..86385f949 100644 --- a/nuttx/sched/sched_reprioritize.c +++ b/nuttx/sched/sched_reprioritize.c @@ -38,7 +38,7 @@ ****************************************************************************/ #include -#include + #include #include @@ -115,7 +115,7 @@ int sched_reprioritize(FAR _TCB *tcb, int sched_priority) * to once it posts the semaphore. */ - tcb->base_priority = (ubyte)sched_priority; + tcb->base_priority = (uint8_t)sched_priority; /* Discard any pending reprioritizations as well */ -- cgit v1.2.3