aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-04-10 02:18:40 +0000
committerAndrew Cagney <cagney@redhat.com>2003-04-10 02:18:40 +0000
commitac16bf075e8f8b82746c2daa5063fec3133e374b (patch)
tree036e17f1d95305b217fe1af902a1efe5ec0f7872 /gdb
parente4b633ba464dd0f158fc4d25a72f98fc2ba42b1f (diff)
downloadbinutils-ac16bf075e8f8b82746c2daa5063fec3133e374b.zip
binutils-ac16bf075e8f8b82746c2daa5063fec3133e374b.tar.gz
binutils-ac16bf075e8f8b82746c2daa5063fec3133e374b.tar.bz2
2003-04-09 Andrew Cagney <cagney@redhat.com>
* defs.h (gdb_print_host_address): Make "addr" parameter a pointer constant. * utils.c (gdb_print_host_address): Update.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/defs.h2
-rw-r--r--gdb/utils.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index d650759..07082ed 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2003-04-09 Andrew Cagney <cagney@redhat.com>
+
+ * defs.h (gdb_print_host_address): Make "addr" parameter a
+ pointer constant.
+ * utils.c (gdb_print_host_address): Update.
+
2003-04-09 Kevin Buettner <kevinb@redhat.com>
* rs6000-tdep.c (frame_get_saved_regs): Don't assume that the
diff --git a/gdb/defs.h b/gdb/defs.h
index 636b515..35d23df 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -479,7 +479,7 @@ extern void fputstr_unfiltered (const char *str, int quotr, struct ui_file * str
extern void fputstrn_unfiltered (const char *str, int n, int quotr, struct ui_file * stream);
/* Display the host ADDR on STREAM formatted as ``0x%x''. */
-extern void gdb_print_host_address (void *addr, struct ui_file *stream);
+extern void gdb_print_host_address (const void *addr, struct ui_file *stream);
/* Convert a CORE_ADDR into a HEX string. paddr() is like %08lx.
paddr_nz() is like %lx. paddr_u() is like %lu. paddr_width() is
diff --git a/gdb/utils.c b/gdb/utils.c
index f8ac0fd..e72aec7 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -1261,7 +1261,7 @@ print_spaces (register int n, register struct ui_file *file)
/* Print a host address. */
void
-gdb_print_host_address (void *addr, struct ui_file *stream)
+gdb_print_host_address (const void *addr, struct ui_file *stream)
{
/* We could use the %p conversion specifier to fprintf if we had any