ping(8): add space after "<=" as per style(9).

MFC after:	1 week
X-MFC-with:	r341768
This commit is contained in:
Eugene Grosbein 2018-12-10 14:39:21 +00:00
parent ca487c1888
commit 2d0a6ce24c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=341795

View file

@ -313,7 +313,7 @@ main(int argc, char *const *argv)
break;
case 'c':
ltmp = strtol(optarg, &ep, 0);
if (*ep || ep == optarg || ltmp <=0)
if (*ep || ep == optarg || ltmp <= 0)
errx(EX_USAGE,
"invalid count of packets to transmit: `%s'",
optarg);