best makefile
[calc.git] / argument.c
index 2c6a93d6aff50d3eea10e2abefbc1946f66b5dd0..c5b1504b25409f9795459eb3885e1813d12ea6c4 100644 (file)
@@ -26,7 +26,7 @@ tab_t *def (int nbops, element_t **ops)
     tab_t *new = alloc_tab (nbops);
     for (i = 0; i < nbops; i++) {
         double val = evaluate_element (ops[i], 0);
-        VERBOSE (DEBUG, fprintf (stdout, "arg[%d] = %g\n", i + i, val));
+        VERBOSE (DEBUG, fprintf (stdout, "value %d/%d = %g\n", i + 1, nbops, val));
         set_tab (new, i + 1, val);
     }
     return new;