about summary refs log tree commit diff
path: root/editor/pgmmedian.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-06-26 02:05:42 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-06-26 02:05:42 +0000
commit4f463b7abea8bc5a6031fe72ab50dc18eeaaa2bf (patch)
treefd67d42be8b0edb1c78da7393ae8c7d95cdc1d69 /editor/pgmmedian.c
parent0a7fcd8c888dd70fe961a4b4fc56fa3d0a24b7c3 (diff)
downloadnetpbm-mirror-4f463b7abea8bc5a6031fe72ab50dc18eeaaa2bf.tar.gz
netpbm-mirror-4f463b7abea8bc5a6031fe72ab50dc18eeaaa2bf.tar.xz
netpbm-mirror-4f463b7abea8bc5a6031fe72ab50dc18eeaaa2bf.zip
Rebase advanced branch to 10.39
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@330 9d0c8265-081b-0410-96cb-a4ca84ce46f8
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 "