From 7d169cef52558decc9dce5f301e3970fb442ffdb Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Tue, 17 Feb 2015 14:28:10 +0000 Subject: [PATCH] Correct typeo that broke the Win32 port. --- FreeRTOS/Source/portable/MSVC-MingW/portmacro.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FreeRTOS/Source/portable/MSVC-MingW/portmacro.h b/FreeRTOS/Source/portable/MSVC-MingW/portmacro.h index 3666c03ea..7f6548193 100644 --- a/FreeRTOS/Source/portable/MSVC-MingW/portmacro.h +++ b/FreeRTOS/Source/portable/MSVC-MingW/portmacro.h @@ -107,7 +107,7 @@ typedef unsigned long UBaseType_t; #define portTICK_PERIOD_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ ) -#if defined( __x86_64_ _) || defined( _M_X64 ) +#if defined( __x86_64__) || defined( _M_X64 ) #define portBYTE_ALIGNMENT 8 #else #define portBYTE_ALIGNMENT 4