From 4383a651c733ac59cd00f193c5115567f6a72f5d Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Thu, 13 Oct 2011 16:50:06 +0200 Subject: Strictly adhere to ANSI-C standard --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'options.c') diff --git a/options.c b/options.c index 97d7350..ee39595 100644 --- a/options.c +++ b/options.c @@ -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], "-"); } -- cgit v1.2.3-54-g00ecf