diff options
author | Gabriel Dos Reis <gdr@integrable-solutions.net> | 2003-04-30 16:12:58 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2003-04-30 16:12:58 +0000 |
commit | 0e42348d22b0e82931e53569757fdf815082dfdd (patch) | |
tree | f6c59ac71988e87f1a890c4934ebb646ebbb1806 | |
parent | 55b15a115bbce3a6a276e542f76ec89f9b0b5206 (diff) | |
download | gcc-0e42348d22b0e82931e53569757fdf815082dfdd.zip gcc-0e42348d22b0e82931e53569757fdf815082dfdd.tar.gz gcc-0e42348d22b0e82931e53569757fdf815082dfdd.tar.bz2 |
* diagnostic.c (output_pointer): Use HOST_PTR_PRINTF.
From-SVN: r66295
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/diagnostic.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c072e62..46d899f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-04-30 Gabriel Dos Reis <gdr@integrable-solutions.net> + + * diagnostic.c (output_pointer): Use HOST_PTR_PRINTF. + 2003-04-30 Andreas Schwab <schwab@suse.de> * doc/extend.texi (Other Builtins): Enclose multiple word data diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index 901484a..e0e47e9 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -352,7 +352,7 @@ output_long_hexadecimal (output_buffer *buffer, long unsigned int i) static inline void output_pointer (output_buffer *buffer, void *p) { - output_formatted_scalar (buffer, "%p", p); + output_formatted_scalar (buffer, HOST_PTR_PRINTF, p); } /* Append to BUFFER a string specified by its STARTING character |