From 27438ef6a5d612685273c490f50a51c26e369321 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Sat, 4 Apr 2026 11:45:39 +0200 Subject: [PATCH] also corrects LONG (not just ULONG) --- port/threadx/inc/tx_port.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/threadx/inc/tx_port.h b/port/threadx/inc/tx_port.h index 2da25c8..3bd9927 100644 --- a/port/threadx/inc/tx_port.h +++ b/port/threadx/inc/tx_port.h @@ -93,7 +93,7 @@ typedef char CHAR; typedef unsigned char UCHAR; typedef int INT; typedef unsigned int UINT; -typedef int LONG; +typedef long LONG; typedef unsigned long ULONG; typedef unsigned long long ULONG64; typedef short SHORT;