From 98448f58c10033a0f7fcd0673cce4626506403fa Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Tue, 30 Sep 2008 18:16:09 +0000 Subject: Silence some warnings about uninitialized variables git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5362 c046a42c-6fe2-441c-8c8c-71466251a162 --- vl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'vl.c') diff --git a/vl.c b/vl.c index d7da9b5..dec8d4f49 100644 --- a/vl.c +++ b/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 -- cgit v1.1