Commit f2901a21 f2901a2107373c4d2b52c755c3c78707597c8476 by Sam Roberts

%d fmt not matching long arg

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