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-Tag: releases/gcc-3.4.0~4978 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3dbb446ebd77a551c63b958faca007983ee33231;p=thirdparty%2Fgcc.git * gcov-dump.c (dump_file): Fix missing address operator. From-SVN: r69182 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 87db20a06201..e63ffc05b507 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 f6902a119e8c..a3e8a3d3f1d3 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); } }