diff options
Diffstat (limited to 'converter/pbm/xbmtopbm.c')
-rw-r--r-- | converter/pbm/xbmtopbm.c | 4 |
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; } |