Index: /branches/eam_branches/ipp-20120627/Ohana/src/dvomerge/src/dvoverify_args.c
===================================================================
--- /branches/eam_branches/ipp-20120627/Ohana/src/dvomerge/src/dvoverify_args.c	(revision 34127)
+++ /branches/eam_branches/ipp-20120627/Ohana/src/dvomerge/src/dvoverify_args.c	(revision 34128)
@@ -45,6 +45,7 @@
     }
 
-    int status = dvoverify_single (filename);
-    exit (!status);
+    int isGood = dvoverify_single (filename);
+    if (!isGood) exit (1);
+    exit (0);
   }
 
Index: /branches/eam_branches/ipp-20120627/Ohana/src/dvomerge/src/dvoverify_utils.c
===================================================================
--- /branches/eam_branches/ipp-20120627/Ohana/src/dvomerge/src/dvoverify_utils.c	(revision 34127)
+++ /branches/eam_branches/ipp-20120627/Ohana/src/dvomerge/src/dvoverify_utils.c	(revision 34128)
@@ -22,9 +22,9 @@
 int dvoverify_single (char *filename) {
 
-  int isBad = FALSE;
+  int isGood = TRUE;
 
   if (!VerifyTableFile (filename)) {
     fprintf (stderr, "bad average table %s\n", filename);
-    isBad = TRUE;
+    isGood = FALSE;
   }
 
@@ -35,5 +35,5 @@
   if (!VerifyTableFile (filename)) {
     fprintf (stderr, "bad secfilt table %s\n", filename);
-    isBad = TRUE;
+    isGood = FALSE;
   }
 
@@ -43,7 +43,7 @@
   if (!VerifyTableFile (filename)) {
     fprintf (stderr, "bad measure table %s\n", filename);
-    isBad = TRUE;
-  }
-  return (isBad);
+    isGood = FALSE;
+  }
+  return (isGood);
 }
 
