Skip to content

Commit

Permalink
Fix use of uninitialized variable warning (FreeRTOS#998)
Browse files Browse the repository at this point in the history
Signed-off-by: Gaurav Aggarwal <[email protected]>
  • Loading branch information
aggarg authored Aug 9, 2023
1 parent bb65463 commit 5757e07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/tcp_utilities/plus_tcp_demo_cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ static void handle_arpq( char * pcBuffer )
{
CommandOptions_t xOptions;
char * ptr = pcBuffer;
eARPLookupResult_t eResult;
eARPLookupResult_t eResult = eARPCacheMiss;
uint32_t ulIPAddress;
uint32_t ulLookUpIP;
MACAddress_t xMACAddress;
Expand Down

0 comments on commit 5757e07

Please sign in to comment.