Refactored print function

This commit is contained in:
Lewis Van Winkle
2016-01-21 14:42:07 -06:00
parent ec3dde1e24
commit 1384e5bbdf

View File

@@ -381,10 +381,7 @@ double te_interp(const char *expression, int *error) {
static void pn (const te_expr *n, int depth) { static void pn (const te_expr *n, int depth) {
int i; printf("%*s", depth, "");
for (i = 0; i < depth; ++i) {
printf(" ");
}
if (n->bound) { if (n->bound) {
printf("bound %p\n", n->bound); printf("bound %p\n", n->bound);