aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-m32r-sdi.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-04-12 16:04:43 +0000
committerMike Frysinger <vapier@gentoo.org>2010-04-12 16:04:43 +0000
commit0d18d7205b3ab45b0e44465111e178e83c8555da (patch)
tree3c9647c017c7aeb21da545a1ccb4144e7081c147 /gdb/remote-m32r-sdi.c
parente377ca52199a29a8502389c4d29d8517903b7f2f (diff)
downloadgdb-0d18d7205b3ab45b0e44465111e178e83c8555da.zip
gdb-0d18d7205b3ab45b0e44465111e178e83c8555da.tar.gz
gdb-0d18d7205b3ab45b0e44465111e178e83c8555da.tar.bz2
gdb: constify remote files_info
The sim and m32r remote targets declare a local "file" variable and only assign const strings to it before passing it to a printf() func. So add const markings to avoid gcc warnings like: gdb/remote-sim.c: In function 'gdbsim_files_info': gdb/remote-sim.c:789: warning: initialization discards qualifiers from pointer target type Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'gdb/remote-m32r-sdi.c')
-rw-r--r--gdb/remote-m32r-sdi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-m32r-sdi.c b/gdb/remote-m32r-sdi.c
index be6a564..a74075b 100644
--- a/gdb/remote-m32r-sdi.c
+++ b/gdb/remote-m32r-sdi.c
@@ -1020,7 +1020,7 @@ m32r_prepare_to_store (struct regcache *regcache)
static void
m32r_files_info (struct target_ops *target)
{
- char *file = "nothing";
+ const char *file = "nothing";
if (exec_bfd)
{