diff options
Diffstat (limited to 'gdb/gdbserver/ax.c')
-rw-r--r-- | gdb/gdbserver/ax.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/gdbserver/ax.c b/gdb/gdbserver/ax.c index 2c096ef0cff..21fde5e6926 100644 --- a/gdb/gdbserver/ax.c +++ b/gdb/gdbserver/ax.c @@ -904,6 +904,14 @@ ax_printf (CORE_ADDR fn, CORE_ADDR chan, const char *format, break; } + case size_t_arg: + { + size_t val = args[i]; + + printf (current_substring, val); + break; + } + case literal_piece: /* Print a portion of the format string that has no directives. Note that this will not include any |