Strictly adhere to ANSI-C standard

This commit is contained in:
Bert Münnich
2011-10-13 16:50:06 +02:00
parent a09b20c5e6
commit 4383a651c7
8 changed files with 26 additions and 35 deletions

View File

@ -140,5 +140,5 @@ void parse_options(int argc, char **argv) {
_options.filenames = argv + optind;
_options.filecnt = argc - optind;
_options.from_stdin = _options.filecnt == 1 &&
streq(_options.filenames[0], "-");
STREQ(_options.filenames[0], "-");
}