Skip to content

Commit

Permalink
Update sys/shell/cmds/gnrc_icmpv6_echo.c
Browse files Browse the repository at this point in the history
Co-authored-by: Martine Lenders <[email protected]>
  • Loading branch information
krzysztof-cabaj and miri64 authored Sep 18, 2023
1 parent 737a413 commit 0dcf20b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/shell/cmds/gnrc_icmpv6_echo.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ static int _configure(int argc, char **argv, _ping_data_t *data)
if ((++i) < argc) {
value = atoi(argv[i]);

if(value < 0 || value > 65527) {
if (value < 0 || value > 65527) {
printf("ICMPv6 datagram size should be in range 0-65527.\n");
return -1;
}
Expand Down

0 comments on commit 0dcf20b

Please sign in to comment.