From: Michael Beck Date: Wed, 6 Oct 2004 16:27:16 +0000 (+0000) Subject: fixed format string X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=a930c10f086e405c9ed0412293f5d20f45118a86;p=libfirm fixed format string [r4067] --- diff --git a/ir/ana/ecg.c b/ir/ana/ecg.c index 3eb3f2027..2fe12b5a8 100644 --- a/ir/ana/ecg.c +++ b/ir/ana/ecg.c @@ -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");