1
0
Fork 0
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:
mostang.com!davidm 2003-02-08 10:10:59 +00:00
parent 981c8cc37b
commit 1d8de85964

View file

@ -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;