* gcov-dump.c (dump_file): Fix missing address operator.

From-SVN: r69182
This commit is contained in:
Andreas Schwab 2003-07-10 09:52:13 +00:00 committed by Andreas Schwab
parent c19f8e352e
commit 3dbb446ebd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-07-10 Andreas Schwab <schwab@suse.de>
* gcov-dump.c (dump_file): Fix missing address operator.
2003-07-10 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (a peephole2): New.

View File

@ -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);
}
}