Make example more correct (errstr is a pointer, not boolean).
This commit is contained in:
parent
e11dc435ba
commit
c65779d460
@ -97,7 +97,7 @@ int iterations;
|
|||||||
const char *errstr;
|
const char *errstr;
|
||||||
|
|
||||||
iterations = strtonum(optarg, 1, 64, &errstr);
|
iterations = strtonum(optarg, 1, 64, &errstr);
|
||||||
if (errstr)
|
if (errstr != NULL)
|
||||||
errx(1, "number of iterations is %s: %s", errstr, optarg);
|
errx(1, "number of iterations is %s: %s", errstr, optarg);
|
||||||
.Ed
|
.Ed
|
||||||
.Pp
|
.Pp
|
||||||
|
Loading…
x
Reference in New Issue
Block a user