A space between switch and open-paren. Don't explicitly cast the value

returned by getopt(3) to 'char' in a switch.
This commit is contained in:
Juli Mallett 2002-05-29 17:12:30 +00:00
parent cc6449ea7f
commit b45e416a12
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97484

View File

@ -60,7 +60,7 @@ main(int argc, char *argv[])
sflag = 0;
while ((ch = getopt(argc, argv, "s")) != -1)
switch((char)ch) {
switch (ch) {
case 's':
sflag = 1;
break;