Skip to content

Commit

Permalink
Fix format specifier in error logging for wfx_rsi_send_data failure i…
Browse files Browse the repository at this point in the history
…n ethernetif.cpp
  • Loading branch information
rosahay-silabs committed Dec 8, 2024
1 parent da515bb commit 45885fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/silabs/wifi/lwip-support/ethernetif.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ static err_t low_level_output(struct netif * netif, struct pbuf * p)
status = wfx_rsi_send_data(packet, datalength);
if (status != 0)
{
ChipLogError(DeviceLayer, "wfx_rsi_send_data failed: 0x%lX", status);
ChipLogError(DeviceLayer, "wfx_rsi_send_data failed: %ld", status);
xSemaphoreGive(ethout_sem);
return ERR_IF;
}
Expand Down

0 comments on commit 45885fa

Please sign in to comment.