Commit 3dbb446e by Andreas Schwab Committed by Andreas Schwab

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

From-SVN: r69182
parent c19f8e35
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> 2003-07-10 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (a peephole2): New. * config/h8300/h8300.md (a peephole2): New.
......
...@@ -179,7 +179,7 @@ dump_file (const char *filename) ...@@ -179,7 +179,7 @@ dump_file (const char *filename)
unsigned expected = GCOV_VERSION; unsigned expected = GCOV_VERSION;
printf ("%s:warning:current version is `%.4s'\n", filename, printf ("%s:warning:current version is `%.4s'\n", filename,
(const char *)expected); (const char *)&expected);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment