mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-27 01:27:39 +01:00
(_UPT_access_mem): Fix typo in debug statement.
(Logical change 1.45)
This commit is contained in:
parent
981c8cc37b
commit
1d8de85964
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ _UPT_access_mem (unw_addr_space_t as, unw_word_t addr, unw_word_t *val,
|
||||||
errno = 0;
|
errno = 0;
|
||||||
if (write)
|
if (write)
|
||||||
{
|
{
|
||||||
debug (100, "_UPT_mem[%lx] <- %lx\n", __FUNCTION__, addr, *val);
|
debug (100, "%s: mem[%lx] <- %lx\n", __FUNCTION__, addr, *val);
|
||||||
ptrace (PTRACE_POKEDATA, pid, addr, *val);
|
ptrace (PTRACE_POKEDATA, pid, addr, *val);
|
||||||
if (errno)
|
if (errno)
|
||||||
return -UNW_EINVAL;
|
return -UNW_EINVAL;
|
||||||
|
|
Loading…
Reference in a new issue