mkfile: getopt() returns an int, not a char.

MFC after:	3 days
Reviewed by:	kevans
Differential Revision:	https://reviews.freebsd.org/D41804
This commit is contained in:
Dag-Erling Smørgrav 2023-09-10 18:33:18 +00:00
parent e203cb393f
commit ef8abddf10

View File

@ -168,7 +168,7 @@ int
main(int argc, char *argv[])
{
unsigned long long fsize;
char ch;
int ch;
/* We have at least 2 arguments. */
if (argc < 3) {