From: Andreas Schwab Date: Thu, 10 Jul 2003 09:52:13 +0000 (+0000) Subject: * gcov-dump.c (dump_file): Fix missing address operator. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3dbb446ebd77a551c63b958faca007983ee33231;p=gcc.git * gcov-dump.c (dump_file): Fix missing address operator. From-SVN: r69182 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 87db20a0620..e63ffc05b50 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-07-10 Andreas Schwab + + * gcov-dump.c (dump_file): Fix missing address operator. + 2003-07-10 Kazu Hirata * config/h8300/h8300.md (a peephole2): New. diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c index f6902a119e8..a3e8a3d3f1d 100644 --- a/gcc/gcov-dump.c +++ b/gcc/gcov-dump.c @@ -179,7 +179,7 @@ dump_file (const char *filename) unsigned expected = GCOV_VERSION; printf ("%s:warning:current version is `%.4s'\n", filename, - (const char *)expected); + (const char *)&expected); } }