diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-04-25 12:56:37 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-04-25 12:56:37 +0000 |
commit | ef28c4b009fad04c9c56612f6b892354cd13f20e (patch) | |
tree | 9a25c0c0576ed409518410e6ad3c555ef2c69797 | |
parent | 6fcfeff9face289aa69a037e73a76c1a7b8c7411 (diff) | |
download | hqemu-ef28c4b009fad04c9c56612f6b892354cd13f20e.zip hqemu-ef28c4b009fad04c9c56612f6b892354cd13f20e.tar.gz |
Fix Win32 warning
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -934,7 +934,7 @@ static struct qemu_alarm_timer *alarm_timer; struct qemu_alarm_win32 { MMRESULT timerId; unsigned int period; -} alarm_win32_data = {0, NULL, -1}; +} alarm_win32_data = {0, -1}; static int win32_start_timer(struct qemu_alarm_timer *t); static void win32_stop_timer(struct qemu_alarm_timer *t); |