Commit c396a7f0f0416e62201faf83520e4710f60d62c5
1 parent
c40ec5a9
Windows build fix, spotted by Herve Poussineau.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3127 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
vl.c
| @@ -1227,7 +1227,7 @@ static int win32_start_timer(struct qemu_alarm_timer *t) | @@ -1227,7 +1227,7 @@ static int win32_start_timer(struct qemu_alarm_timer *t) | ||
| 1227 | data->host_alarm = CreateEvent(NULL, FALSE, FALSE, NULL); | 1227 | data->host_alarm = CreateEvent(NULL, FALSE, FALSE, NULL); |
| 1228 | if (!data->host_alarm) { | 1228 | if (!data->host_alarm) { |
| 1229 | perror("Failed CreateEvent"); | 1229 | perror("Failed CreateEvent"); |
| 1230 | - return -1 | 1230 | + return -1; |
| 1231 | } | 1231 | } |
| 1232 | 1232 | ||
| 1233 | memset(&tc, 0, sizeof(tc)); | 1233 | memset(&tc, 0, sizeof(tc)); |