From d8a3ad3c6fe4cd3b12d401ebf1eef74aabe3ac4b Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Sun, 14 Jul 2019 16:06:31 +0000 Subject: [PATCH] Minor modification to the WIn32 simple TCP/IP stack example only. --- .../DemoTasks/SimpleUDPClientAndServer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_Minimal_Windows_Simulator/DemoTasks/SimpleUDPClientAndServer.c b/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_Minimal_Windows_Simulator/DemoTasks/SimpleUDPClientAndServer.c index 0c6ffa2f20..54143c3675 100644 --- a/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_Minimal_Windows_Simulator/DemoTasks/SimpleUDPClientAndServer.c +++ b/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_Minimal_Windows_Simulator/DemoTasks/SimpleUDPClientAndServer.c @@ -92,7 +92,7 @@ static void prvSimpleClientTask( void *pvParameters ) { Socket_t xClientSocket; struct freertos_sockaddr xDestinationAddress; -uint8_t cString[ 50 ]; +uint8_t cString[ 65 ]; BaseType_t lReturned; uint32_t ulCount = 0UL, ulIPAddress; const uint32_t ulLoopsPerSocket = 10UL;