fixed format string
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 6 Oct 2004 16:27:16 +0000 (16:27 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 6 Oct 2004 16:27:16 +0000 (16:27 +0000)
[r4067]

ir/ana/ecg.c

index 3eb3f20..2fe12b5 100644 (file)
@@ -1516,8 +1516,8 @@ void ecg_ecg ()
   ecg_ecg_graph (dot, main_graph);
 
   fprintf (dot, "\t/* Grand Total: */\n");
-  fprintf (dot, "\t/* calls:  %i */\n", _calls);
-  fprintf (dot, "\t/* graphs: %i */\n", _graphs);
+  fprintf (dot, "\t/* calls:  %ld */\n", _calls);
+  fprintf (dot, "\t/* graphs: %ld */\n", _graphs);
   fprintf (dot, "\t/* (sales tax not included) */\n");
 
   fprintf (dot, "}\n");