error:
if (tokenType == MOT || tokenType == MOTCLE) {
fwprintf(stderr, L"%s error with token type: %s and value: %ls\n",
- __func__,
- tokenTypestr[tokenType],
- token[tokenFound].value);
+ __func__,
+ tokenTypestr[tokenType],
+ token[tokenFound].value);
} else {
fwprintf(stderr, L"%s error with token type: %s\n",
- __func__,
- tokenTypestr[tokenType]);
+ __func__,
+ tokenTypestr[tokenType]);
}
fflush(stderr);
tokenType = FIN;
case ':':
/* missing option argument */
pr_error("%s: option '-%c' requires an argument\n",
- argv[0], optopt);
+ argv[0], optopt);
break;
case '?':
default:
/* invalid option */
pr_error("%s: option '-%c' is invalid: ignored\n",
- argv[0], optopt);
+ argv[0], optopt);
break;
}
}