about summary refs log tree commit diff
path: root/editor/pgmmedian.c
diff options
context:
space:
mode:
Diffstat (limited to 'editor/pgmmedian.c')
-rw-r--r--editor/pgmmedian.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/pgmmedian.c b/editor/pgmmedian.c
index 5878b1e7..9ca2bbb1 100644
--- a/editor/pgmmedian.c
+++ b/editor/pgmmedian.c
@@ -102,9 +102,9 @@ parseCommandLine(int argc, char ** argv,
         cmdlineP->cutoff = 250;
 
     if (typeSpec) {
-        if (STREQ(type, "histogram_sort"))
+        if (streq(type, "histogram_sort"))
             cmdlineP->type = HISTOGRAM_SORT_MEDIAN;
-        else if (STREQ(type, "select"))
+        else if (streq(type, "select"))
             cmdlineP->type = SELECT_MEDIAN;
         else
             pm_error("Invalid value '%s' for -type.  Valid values are "