From: richardbarry Date: Mon, 28 Feb 2011 16:11:26 +0000 (+0000) Subject: Correct the configUSE_16_BIT_TICKS usage in the GCC Coldfire port layer. X-Git-Tag: V7.0.0~40 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=420560ba048b4d19d84cd9992aa0a482a8ec7305;p=freertos Correct the configUSE_16_BIT_TICKS usage in the GCC Coldfire port layer. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1309 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/portable/GCC/MCF5235/portmacro.h b/Source/portable/GCC/MCF5235/portmacro.h index 7e94b5f4b..90ecf78ea 100644 --- a/Source/portable/GCC/MCF5235/portmacro.h +++ b/Source/portable/GCC/MCF5235/portmacro.h @@ -67,7 +67,7 @@ extern "C" { #define portSTACK_TYPE unsigned int #define portBASE_TYPE int -#if( USE_16_BIT_TICKS == 1 ) +#if( configUSE_16_BIT_TICKS == 1 ) typedef unsigned portSHORT portTickType; #define portMAX_DELAY ( portTickType ) 0xffff #else