From 3f10f923401016605939dc1af34f0ede945585fc Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Mon, 28 Feb 2011 16:12:55 +0000 Subject: [PATCH] Correct the configUSE_16_BIT_TICKS usage in the Win32 simulator port layer. --- Source/portable/MSVC-MingW/portmacro.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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