We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adabaad commit bb48c52Copy full SHA for bb48c52
source/include/FreeRTOS_IP.h
@@ -61,10 +61,10 @@
61
#define ipSIZE_OF_TCP_HEADER 20U
62
63
/* The maximum of int32 value. */
64
-#define ipINT32_MAX_VALUE ( 0x7FFFFFFF )
+#define ipINT32_MAX_VALUE ( ( int32_t ) 0x7FFFFFFF )
65
66
/* The minimum of int32 value. */
67
-#define ipINT32_MIN_VALUE ( 0x80000000 )
+#define ipINT32_MIN_VALUE ( ( int32_t ) 0x80000000 )
68
69
/*
70
* Generate a randomized TCP Initial Sequence Number per RFC.
0 commit comments