about summary refs log tree commit diff
path: root/converter/pbm/pbmtopk.c
diff options
context:
space:
mode:
Diffstat (limited to 'converter/pbm/pbmtopk.c')
-rw-r--r--converter/pbm/pbmtopk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/pbm/pbmtopk.c b/converter/pbm/pbmtopk.c
index 08aff49a..fc94f855 100644
--- a/converter/pbm/pbmtopk.c
+++ b/converter/pbm/pbmtopk.c
@@ -172,7 +172,7 @@ pbmtopk_add_suffix(char * const name,
     char *slash = strrchr(name, '/');
     char *dot = strrchr(name, '.');
 
-    if ((dot && slash ? dot < slash : !dot) && !STREQ(name, "-"))
+    if ((dot && slash ? dot < slash : !dot) && !streq(name, "-"))
         strcat(name, suffix);
 }