Commit f2901a21 f2901a2107373c4d2b52c755c3c78707597c8476 by Sam Roberts

%d fmt not matching long arg

1 parent ff49c3cb
......@@ -119,7 +119,7 @@ echo (char *s)
break;
default:
fprintf (ofile, "%d", number);
fprintf (ofile, "%ld", number);
s--;
continue;
}
......