From c396a7f0f0416e62201faf83520e4710f60d62c5 Mon Sep 17 00:00:00 2001 From: ths Date: Mon, 20 Aug 2007 15:42:22 +0000 Subject: [PATCH] Windows build fix, spotted by Herve Poussineau. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3127 c046a42c-6fe2-441c-8c8c-71466251a162 --- vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vl.c b/vl.c index 686bc3b65b..29595a2d65 100644 --- a/vl.c +++ b/vl.c @@ -1227,7 +1227,7 @@ static int win32_start_timer(struct qemu_alarm_timer *t) data->host_alarm = CreateEvent(NULL, FALSE, FALSE, NULL); if (!data->host_alarm) { perror("Failed CreateEvent"); - return -1 + return -1; } memset(&tc, 0, sizeof(tc));