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>
+2010-04-12  Mike Frysinger  <vapier@gentoo.org>
+
+       * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
+       * remote-sim.c (gdbsim_files_info): Likewise.
+
 2010-04-12  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
 
        * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
 
 static void
 m32r_files_info (struct target_ops *target)
 {
-  char *file = "nothing";
+  const char *file = "nothing";
 
   if (exec_bfd)
     {
 
 static void
 gdbsim_files_info (struct target_ops *target)
 {
-  char *file = "nothing";
+  const char *file = "nothing";
 
   if (exec_bfd)
     file = bfd_get_filename (exec_bfd);