1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-01-11 19:43:42 +01:00

(_UPT_access_reg): Fix typo in debug() statements.

(Logical change 1.44)
This commit is contained in:
mostang.com!davidm 2003-01-28 07:32:15 +00:00
parent ac0e9b4184
commit 17220411d4

View file

@ -40,7 +40,7 @@ _UPT_access_reg (unw_addr_space_t as, unw_regnum_t reg, unw_word_t *val,
#if DEBUG
if (write)
debug (100, "%s: %s <- %lx\n", __FUNCTION__ unw_regname (reg), *val);
debug (100, "%s: %s <- %lx\n", __FUNCTION__, unw_regname (reg), *val);
#endif
#if UNW_TARGET_IA64
@ -183,7 +183,7 @@ _UPT_access_reg (unw_addr_space_t as, unw_regnum_t reg, unw_word_t *val,
out:
#if DEBUG
if (!write)
debug (100, "%s: %s -> %lx\n", __FUNCTION__ unw_regname (reg), *val);
debug (100, "%s: %s -> %lx\n", __FUNCTION__, unw_regname (reg), *val);
#endif
return 0;
}