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 e0c4ebf commit 737a413
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 @@ -211,7 +211,7 @@ static int _configure(int argc, char **argv, _ping_data_t *data)
value = atoi(argv[i]);

if(value < 0 || value > 65527) {

Check warning on line 213 in sys/shell/cmds/gnrc_icmpv6_echo.c

View workflow job for this annotation

GitHub Actions / static-tests

keyword 'if' not followed by a single space
printf("ICMPv6 datagram size should be in range <0, 65527>.\n");
printf("ICMPv6 datagram size should be in range 0-65527.\n");
return -1;
}
data->datalen = value;
Expand Down

0 comments on commit 737a413

Please sign in to comment.