Skip to content

Commit dac7c60

Browse files
committed
add spaces around macros to eliminate warning
1 parent 6d980df commit dac7c60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/console/Commands/NetworkCommands.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ static void on_ping_end(esp_ping_handle_t hdl, void *args)
9999
} else {
100100
printf("\n--- %s ping statistics ---", inet6_ntoa(*ip_2_ip6(&target_addr)));
101101
}
102-
printf("%"PRIu32" packets transmitted, %"PRIu32" received, %"PRIu32"%% packet loss, time %"PRIu32"ms",
102+
printf("%" PRIu32 " packets transmitted, %" PRIu32 " received, %" PRIu32 "%% packet loss, time %" PRIu32 "ms",
103103
transmitted, received, loss, total_time_ms);
104104
// delete the ping sessions, so that we clean up all resources and can create a new ping session
105105
// we don't have to call delete function in the callback, instead we can call delete function from other tasks

0 commit comments

Comments
 (0)