Skip to content

Commit bb48c52

Browse files
committed
Fix build-check
1 parent adabaad commit bb48c52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/include/FreeRTOS_IP.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@
6161
#define ipSIZE_OF_TCP_HEADER 20U
6262

6363
/* The maximum of int32 value. */
64-
#define ipINT32_MAX_VALUE ( 0x7FFFFFFF )
64+
#define ipINT32_MAX_VALUE ( ( int32_t ) 0x7FFFFFFF )
6565

6666
/* The minimum of int32 value. */
67-
#define ipINT32_MIN_VALUE ( 0x80000000 )
67+
#define ipINT32_MIN_VALUE ( ( int32_t ) 0x80000000 )
6868

6969
/*
7070
* Generate a randomized TCP Initial Sequence Number per RFC.

0 commit comments

Comments
 (0)