mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 00:07:57 -06:00
Fix some compiler warnings.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3520 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
2e13d23ac0
commit
f3e3285dcd
2 changed files with 12 additions and 1 deletions
|
@ -106,7 +106,8 @@ print_timeval(target_ulong tv_addr)
|
|||
return;
|
||||
|
||||
tv = lock_user(tv_addr, sizeof(*tv), 1);
|
||||
gemu_log("{%d,%d}", tv->tv_sec, tv->tv_usec);
|
||||
gemu_log("{" TARGET_ABI_FMT_ld "," TARGET_ABI_FMT_ld "}",
|
||||
tv->tv_sec, tv->tv_usec);
|
||||
unlock_user(tv, tv_addr, 0);
|
||||
} else
|
||||
gemu_log("NULL");
|
||||
|
@ -220,12 +221,15 @@ if( ret == -1 ) {
|
|||
}
|
||||
}
|
||||
|
||||
#if 0 /* currently unused */
|
||||
static void
|
||||
print_syscall_ret_raw(struct syscallname *name, target_long ret)
|
||||
{
|
||||
gemu_log(" = " TARGET_FMT_lx "\n", ret);
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef TARGET_NR__newselect
|
||||
static void
|
||||
print_syscall_ret_newselect(struct syscallname *name, target_long ret)
|
||||
{
|
||||
|
@ -239,6 +243,7 @@ print_syscall_ret_newselect(struct syscallname *name, target_long ret)
|
|||
print_timeval(newselect_arg5);
|
||||
gemu_log(")\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* An array of all of the syscalls we know about
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue