From: richardbarry Date: Mon, 28 Feb 2011 16:12:55 +0000 (+0000) Subject: Correct the configUSE_16_BIT_TICKS usage in the Win32 simulator port layer. X-Git-Tag: V7.0.0~39 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8d25c0109073aa97dd05a689d2ee54235488e271;p=freertos Correct the configUSE_16_BIT_TICKS usage in the Win32 simulator port layer. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1310 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/portable/MSVC-MingW/portmacro.h b/Source/portable/MSVC-MingW/portmacro.h index c7e99b280..ad8419a20 100644 --- a/Source/portable/MSVC-MingW/portmacro.h +++ b/Source/portable/MSVC-MingW/portmacro.h @@ -68,7 +68,7 @@ #define portSTACK_TYPE unsigned portLONG #define portBASE_TYPE portLONG -#if( USE_16_BIT_TICKS == 1 ) +#if( configUSE_16_BIT_TICKS == 1 ) typedef unsigned portSHORT portTickType; #define portMAX_DELAY ( portTickType ) 0xffff #else