diff options
author | Keith Seitz <keiths@redhat.com> | 2013-03-07 00:48:25 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2013-03-07 00:48:25 +0000 |
commit | 741d92cf3986c9327b90b1153c9f6e2a6a2cc13f (patch) | |
tree | ca2804540b7146c6f3d5d52276013ba6cd0c7e8e /gdb/ax-gdb.c | |
parent | 31c620b0bc323ee9c8164ae80d12222d48c130d9 (diff) | |
download | gdb-741d92cf3986c9327b90b1153c9f6e2a6a2cc13f.zip gdb-741d92cf3986c9327b90b1153c9f6e2a6a2cc13f.tar.gz gdb-741d92cf3986c9327b90b1153c9f6e2a6a2cc13f.tar.bz2 |
* ax-gdb.c (gen_printf): Make FORMAT const.
* ax-gdb.h (gen_printf): Likewise.
* ax-general.c (ax_string): Make STR const.
* ax.h (ax_string): Likewise.
Diffstat (limited to 'gdb/ax-gdb.c')
-rw-r--r-- | gdb/ax-gdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c index 2029882..066826e 100644 --- a/gdb/ax-gdb.c +++ b/gdb/ax-gdb.c @@ -2558,7 +2558,7 @@ gen_trace_for_return_address (CORE_ADDR scope, struct gdbarch *gdbarch) struct agent_expr * gen_printf (CORE_ADDR scope, struct gdbarch *gdbarch, CORE_ADDR function, LONGEST channel, - char *format, int fmtlen, + const char *format, int fmtlen, struct format_piece *frags, int nargs, struct expression **exprs) { |