From patchwork Wed Mar 10 10:38:39 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [02/18] fix error in win32_rearm_timer Date: Wed, 10 Mar 2010 00:38:39 -0000 From: Paolo Bonzini X-Patchwork-Id: 47230 Message-Id: <1268217535-26554-3-git-send-email-pbonzini@redhat.com> To: qemu-devel@nongnu.org The TIME_ONESHOT and TIME_PERIODIC flags are mutually exclusive. The code after the patch matches the flags used in win32_start_timer. Signed-off-by: Paolo Bonzini --- vl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/vl.c b/vl.c index 6b1e1a7..7958a26 100644 --- a/vl.c +++ b/vl.c @@ -1408,7 +1408,7 @@ static void win32_rearm_timer(struct qemu_alarm_timer *t) data->period, host_alarm_handler, (DWORD)t, - TIME_ONESHOT | TIME_PERIODIC); + TIME_ONESHOT | TIME_CALLBACK_FUNCTION); if (!data->timerId) { fprintf(stderr, "Failed to re-arm win32 alarm timer %ld\n",