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/tifftopnm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'converter/other/tifftopnm.c') diff --git a/converter/other/tifftopnm.c b/converter/other/tifftopnm.c index 5969a49a..ce17b7e1 100644 --- a/converter/other/tifftopnm.c +++ b/converter/other/tifftopnm.c @@ -138,7 +138,7 @@ parseCommandLine(int argc, char ** argv, "is the input file name"); if (alphaSpec) { - if (STREQ(cmdlineP->alphaFilename, "-")) + if (streq(cmdlineP->alphaFilename, "-")) cmdlineP->alphaStdout = TRUE; else cmdlineP->alphaStdout = FALSE; @@ -1024,7 +1024,7 @@ main(int argc, char * argv[]) { parseCommandLine(argc, argv, &cmdline); - if (!STREQ(cmdline.inputFilename, "-")) { + if (!streq(cmdline.inputFilename, "-")) { tif = TIFFOpen(cmdline.inputFilename, "r"); if (tif == NULL) pm_error("error opening TIFF file %s", cmdline.inputFilename); -- cgit 1.4.1