From 8d25c0109073aa97dd05a689d2ee54235488e271 Mon Sep 17 00:00:00 2001 From: richardbarry Date: Mon, 28 Feb 2011 16:12:55 +0000 Subject: [PATCH] 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 --- 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 -- 2.39.5