diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-08-20 15:42:22 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-08-20 15:42:22 +0000 |
commit | c396a7f0f0416e62201faf83520e4710f60d62c5 (patch) | |
tree | 44bf14bae60a2e345812e54240d0e0e43dcf7404 /vl.c | |
parent | c40ec5a966eab19e75c98ee779145875d362b515 (diff) |
Windows build fix, spotted by Herve Poussineau.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3127 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |