From 6a4743a5b8132c70eb5e4df40a11c5bfdf3bcc23 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 12 Aug 2007 17:40:46 +0000 Subject: Convert rest of STREQ to streq git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@375 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/other/giftopnm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'converter/other/giftopnm.c') diff --git a/converter/other/giftopnm.c b/converter/other/giftopnm.c index 0e261da4..a79a0bbe 100644 --- a/converter/other/giftopnm.c +++ b/converter/other/giftopnm.c @@ -1336,7 +1336,7 @@ readGifHeader(FILE * const gifFile, struct gifScreen * const gifScreenP) { if (verbose) pm_message("GIF format version is '%s'", version); - if ((!STREQ(version, "87a")) && (!STREQ(version, "89a"))) + if ((!streq(version, "87a")) && (!streq(version, "89a"))) pm_error("bad version number, not '87a' or '89a'" ); if (! ReadOK(gifFile,buf,7)) @@ -1658,7 +1658,7 @@ main(int argc, char **argv) { else alpha_file = pm_openw(cmdline.alpha_filename); - if (alpha_file && STREQ(cmdline.alpha_filename, "-")) + if (alpha_file && streq(cmdline.alpha_filename, "-")) imageout_file = NULL; else imageout_file = stdout; -- cgit 1.4.1