diff options
author | rtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2> | 2013-11-28 10:48:33 +0000 |
---|---|---|
committer | rtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2> | 2013-11-28 10:48:33 +0000 |
commit | ad461701231f8ff381797ced836ba3a3bed6ad65 (patch) | |
tree | 0bc8019de2fa1346e8ab83e72333003afe6e3beb /FreeRTOS/Source/portable/GCC/H8S2329 | |
parent | 7bf8d5cad8ba4ce1fedb61d734c97a698ef68d73 (diff) | |
download | freertos-ad461701231f8ff381797ced836ba3a3bed6ad65.tar.gz |
Multiple tidy up, documentation corrections and typo corrections highlighted by Tamas Kleiber's diligent review.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2118 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Source/portable/GCC/H8S2329')
-rw-r--r-- | FreeRTOS/Source/portable/GCC/H8S2329/portmacro.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS/Source/portable/GCC/H8S2329/portmacro.h b/FreeRTOS/Source/portable/GCC/H8S2329/portmacro.h index bf077a8b5..939266ab2 100644 --- a/FreeRTOS/Source/portable/GCC/H8S2329/portmacro.h +++ b/FreeRTOS/Source/portable/GCC/H8S2329/portmacro.h @@ -95,7 +95,7 @@ extern "C" { #define portMAX_DELAY ( portTickType ) 0xffff
#else
typedef unsigned portLONG portTickType;
- #define portMAX_DELAY ( portTickType ) 0xffffffff
+ #define portMAX_DELAY ( portTickType ) 0xffffffffUL
#endif
/*-----------------------------------------------------------*/
|