about summary refs log tree commit diff
path: root/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-12-08 02:52:21 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-12-08 02:52:21 +0000
commit903b4c784afe71fa323e5e4ae65e3a7605f51eee (patch)
tree76339b02b01c33a78365a3aa46a2212ddc7803e2 /other
parent4c361c0a7638b4f068e8b524e4ff43374a286018 (diff)
downloadnetpbm-mirror-903b4c784afe71fa323e5e4ae65e3a7605f51eee.tar.gz
netpbm-mirror-903b4c784afe71fa323e5e4ae65e3a7605f51eee.tar.xz
netpbm-mirror-903b4c784afe71fa323e5e4ae65e3a7605f51eee.zip
Release 10.92.01
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@3996 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'other')
-rw-r--r--other/pamarith.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/other/pamarith.c b/other/pamarith.c
index c67c7326..180dbe23 100644
--- a/other/pamarith.c
+++ b/other/pamarith.c
@@ -23,21 +23,21 @@ isDyadic(enum function const function) {
 
     switch (function) {
     case FN_ADD:
+    case FN_MULTIPLY:
+    case FN_MINIMUM:
+    case FN_MAXIMUM:
     case FN_MEAN:
     case FN_AND:
+    case FN_NAND:
     case FN_OR:
+    case FN_NOR:
     case FN_XOR:
         retval = FALSE;
         break;
     case FN_SUBTRACT:
     case FN_DIFFERENCE:
-    case FN_MINIMUM:
-    case FN_MAXIMUM:
     case FN_COMPARE:
-    case FN_MULTIPLY:
     case FN_DIVIDE:
-    case FN_NAND:
-    case FN_NOR:
     case FN_SHIFTLEFT:
     case FN_SHIFTRIGHT:
         retval = TRUE;