about summary refs log tree commit diff
path: root/converter/other/tifftopnm.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-08-12 17:40:46 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-08-12 17:40:46 +0000
commit6a4743a5b8132c70eb5e4df40a11c5bfdf3bcc23 (patch)
tree2bd384d526827c0d2968f5bb6256e13cd485e4b9 /converter/other/tifftopnm.c
parent20920e2b1a91e5b2eef6ec0055ed7162fe6fab07 (diff)
downloadnetpbm-mirror-6a4743a5b8132c70eb5e4df40a11c5bfdf3bcc23.tar.gz
netpbm-mirror-6a4743a5b8132c70eb5e4df40a11c5bfdf3bcc23.tar.xz
netpbm-mirror-6a4743a5b8132c70eb5e4df40a11c5bfdf3bcc23.zip
Convert rest of STREQ to streq
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@375 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/tifftopnm.c')
-rw-r--r--converter/other/tifftopnm.c4
1 files changed, 2 insertions, 2 deletions
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);