[binutils-gdb] sim: m68hc11: tweak printf-style funcs

Michael Frysinger vapier@sourceware.org
Sat Jan 30 18:38:38 GMT 2021


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=fb8d4e59af8a0faf6f38499760546f9fffba299d

commit fb8d4e59af8a0faf6f38499760546f9fffba299d
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Sat Jan 30 10:23:08 2021 -0500

    sim: m68hc11: tweak printf-style funcs
    
    GCC complains that we past non-string literals to a printf style func,
    so put a %s in here to keep it quiet.

Diff:
---
 sim/m68hc11/ChangeLog | 4 ++++
 sim/m68hc11/interp.c  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog
index 90d73df898a..7c956d1b627 100644
--- a/sim/m68hc11/ChangeLog
+++ b/sim/m68hc11/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-30  Mike Frysinger  <vapier@gentoo.org>
+
+	* interp.c (sim_get_info, sim_board_reset): Pass %s to sim_hw_parse.
+
 2021-01-30  Mike Frysinger  <vapier@gentoo.org>
 
 	* dv-m68hc11.c, m68hc11_sim.c: Include stdlib.h.
diff --git a/sim/m68hc11/interp.c b/sim/m68hc11/interp.c
index 26f2d1527be..7dc8e25c046 100644
--- a/sim/m68hc11/interp.c
+++ b/sim/m68hc11/interp.c
@@ -100,7 +100,7 @@ sim_get_info (SIM_DESC sd, char *cmd)
 	  sim_io_eprintf (sd, "Valid devices: cpu timer sio eeprom\n");
 	  return;
 	}
-      hw_dev = sim_hw_parse (sd, dev_list[i].device);
+      hw_dev = sim_hw_parse (sd, "%s", dev_list[i].device);
       if (hw_dev == 0)
 	{
 	  sim_io_eprintf (sd, "Device '%s' not found\n", dev_list[i].device);
@@ -138,7 +138,7 @@ sim_board_reset (SIM_DESC sd)
       cpu_type = "/m68hc12";
     }
   
-  hw_cpu = sim_hw_parse (sd, cpu_type);
+  hw_cpu = sim_hw_parse (sd, "%s", cpu_type);
   if (hw_cpu == 0)
     {
       sim_io_eprintf (sd, "%s cpu not found in device tree.", cpu_type);


More information about the Gdb-cvs mailing list