mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
Silence some warnings about uninitialized variables
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5362 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
223f0d72a8
commit
98448f58c1
3 changed files with 6 additions and 3 deletions
4
vl.c
4
vl.c
|
@ -7831,8 +7831,10 @@ static int main_loop(void)
|
|||
timeout = 0;
|
||||
}
|
||||
} else {
|
||||
if (shutdown_requested)
|
||||
if (shutdown_requested) {
|
||||
ret = EXCP_INTERRUPT;
|
||||
break;
|
||||
}
|
||||
timeout = 10;
|
||||
}
|
||||
#ifdef CONFIG_PROFILER
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue