Remove signed check on unsigned variable

This commit is contained in:
ISSOtm
2022-03-09 08:40:36 +01:00
parent e07bd92314
commit af70d555fc

View File

@@ -241,7 +241,7 @@ int main(int argc, char *argv[])
if (musl_optarg[0] == '\0' || *ep != '\0')
errx("Invalid argument for option 'p'");
if (fill < 0 || fill > 0xFF)
if (fill > 0xFF)
errx("Argument for option 'p' must be between 0 and 0xFF");
opt_P(fill);