mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 11:53:39 +08:00
hex numbers must have a leading 0x
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3603 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
f26ae30264
commit
29fa23e76d
@ -224,7 +224,7 @@ print_syscall_ret_addr(struct syscallname *name, abi_long ret)
|
||||
if( ret == -1 ) {
|
||||
gemu_log(" = -1 errno=%d (%s)\n", errno, target_strerror(errno));
|
||||
} else {
|
||||
gemu_log(" = " TARGET_ABI_FMT_lx "\n", ret);
|
||||
gemu_log(" = 0x" TARGET_ABI_FMT_lx "\n", ret);
|
||||
}
|
||||
}
|
||||
|
||||
@ -232,7 +232,7 @@ if( ret == -1 ) {
|
||||
static void
|
||||
print_syscall_ret_raw(struct syscallname *name, abi_long ret)
|
||||
{
|
||||
gemu_log(" = " TARGET_ABI_FMT_lx "\n", ret);
|
||||
gemu_log(" = 0x" TARGET_ABI_FMT_lx "\n", ret);
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -240,7 +240,7 @@ print_syscall_ret_raw(struct syscallname *name, abi_long ret)
|
||||
static void
|
||||
print_syscall_ret_newselect(struct syscallname *name, abi_long ret)
|
||||
{
|
||||
gemu_log(" = " TARGET_ABI_FMT_lx " (", ret);
|
||||
gemu_log(" = 0x" TARGET_ABI_FMT_lx " (", ret);
|
||||
print_fdset(newselect_arg1,newselect_arg2);
|
||||
gemu_log(",");
|
||||
print_fdset(newselect_arg1,newselect_arg3);
|
||||
|
Loading…
Reference in New Issue
Block a user