Skip to content

Commit

Permalink
Fixed the typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
arun-silabs committed Feb 29, 2024
1 parent a96538c commit b2b5828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/platform/silabs/SiWx917/uart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ int16_t uartLogWrite(const char * log, uint16_t length)
{
return UART_CONSOLE_ERR;
}
for (int16_t i = 0; i < length; i++)
for (uint16_t i = 0; i < length; i++)
{
Board_UARTPutChar(log[i]);
}
Expand Down

0 comments on commit b2b5828

Please sign in to comment.