diff options
Diffstat (limited to 'gdb/gdbserver/ax.c')
-rw-r--r-- | gdb/gdbserver/ax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/ax.c b/gdb/gdbserver/ax.c index 1eefaf3..ef659dc 100644 --- a/gdb/gdbserver/ax.c +++ b/gdb/gdbserver/ax.c @@ -105,7 +105,7 @@ gdb_parse_agent_expr (char **actparm) aexpr = xmalloc (sizeof (struct agent_expr)); aexpr->length = xlen; aexpr->bytes = xmalloc (xlen); - convert_ascii_to_int (act, aexpr->bytes, xlen); + hex2bin (act, aexpr->bytes, xlen); *actparm = act + (xlen * 2); return aexpr; } |