Index: trunk/Ohana/src/opihi/lib.shell/parse.c
===================================================================
--- trunk/Ohana/src/opihi/lib.shell/parse.c	(revision 41176)
+++ trunk/Ohana/src/opihi/lib.shell/parse.c	(revision 41340)
@@ -66,5 +66,5 @@
 	/* dvomath returns a new string, or NULL, with the result of the expression */
 	val = dvomath (1, &V1, &size, 0);
-	if (val == NULL) { print_error (); goto error; }
+	if (val == NULL) goto error;
 	fval += atof(val);
 	// save the result
@@ -88,5 +88,5 @@
 	/* dvomath returns a new string, or NULL, with the result of the expression */
 	val = dvomath (1, &V1, &size, 0);
-	if (val == NULL) { print_error (); goto error; }
+	if (val == NULL) goto error;
 	fval -= atof(val);
 	// save the result
