about summary refs log tree commit diff
path: root/other/pamarith.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-12-08 02:54:00 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-12-08 02:54:00 +0000
commit1a2027b4112f1b66023db8563e47db35899654a8 (patch)
treea9b9f48844bedb0d003a9fe337e39b583eae03ef /other/pamarith.c
parent6eb04c5ebd4cd3cae0ce4de2921ce7a4b709d473 (diff)
downloadnetpbm-mirror-1a2027b4112f1b66023db8563e47db35899654a8.tar.gz
netpbm-mirror-1a2027b4112f1b66023db8563e47db35899654a8.tar.xz
netpbm-mirror-1a2027b4112f1b66023db8563e47db35899654a8.zip
Release 10.86.18
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@3997 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'other/pamarith.c')
-rw-r--r--other/pamarith.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/other/pamarith.c b/other/pamarith.c
index 3fde1953..3f44dc73 100644
--- a/other/pamarith.c
+++ b/other/pamarith.c
@@ -22,21 +22,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;