about summary refs log tree commit diff
path: root/converter/pbm/xbmtopbm.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-07-21 21:50:47 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-07-21 21:50:47 +0000
commite6ed14879751efe980590dcd0431a031a4ab0895 (patch)
tree64be9cc5e0414f1bd9164b5ab1870994dfc419bd /converter/pbm/xbmtopbm.c
parent026502e4d4d08bd61bf44f93cd1dd510ebddf0b7 (diff)
downloadnetpbm-mirror-e6ed14879751efe980590dcd0431a031a4ab0895.tar.gz
netpbm-mirror-e6ed14879751efe980590dcd0431a031a4ab0895.tar.xz
netpbm-mirror-e6ed14879751efe980590dcd0431a031a4ab0895.zip
Change some STREQ to streq
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@361 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/pbm/xbmtopbm.c')
-rw-r--r--converter/pbm/xbmtopbm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/pbm/xbmtopbm.c b/converter/pbm/xbmtopbm.c
index 63be16ef..135b79f1 100644
--- a/converter/pbm/xbmtopbm.c
+++ b/converter/pbm/xbmtopbm.c
@@ -80,10 +80,10 @@ parseWidthHeightLine(const char *   const line,
             type = underscorePos + 1;
         else
             type = nameAndType;
-        if (STREQ(type, "width")) {
+        if (streq(type, "width")) {
             *gotWidthP = TRUE;
             *widthP = value;
-        } else if (STREQ(type, "height")) {
+        } else if (streq(type, "height")) {
             *gotHeightP = TRUE;
             *heightP = value;
         }