]> git.proxmox.com Git - mirror_qemu.git/blobdiff - event_notifier-win32.c
event notifier: Fix setup for win32
[mirror_qemu.git] / event_notifier-win32.c
index c723dadf3134229cc9f7cba5531363a1a6bbd84e..4ed21c2a7c8729876748d4c9198a8b1eafbd41ae 100644 (file)
@@ -16,7 +16,7 @@
 
 int event_notifier_init(EventNotifier *e, int active)
 {
-    e->event = CreateEvent(NULL, FALSE, FALSE, NULL);
+    e->event = CreateEvent(NULL, TRUE, FALSE, NULL);
     assert(e->event);
     return 0;
 }