Hi,
In support of Avi's preference for half line patches, I split out the
bool eliminating bits too.
Cheers,
Jes
Replace unnecessary use of _Bool type with int.
Signed-off-by: Jes Sorensen <[EMAIL PROTECTED]>
---
qemu/qemu-kvm.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: kvm-userspace.git/qemu/qemu-kvm.c
===================================================================
--- kvm-userspace.git.orig/qemu/qemu-kvm.c
+++ kvm-userspace.git/qemu/qemu-kvm.c
@@ -28,7 +28,6 @@
#include <sys/syscall.h>
#include <sys/mman.h>
-#define bool _Bool
#define false 0
#define true 1
@@ -53,7 +52,7 @@
struct qemu_kvm_work_item *next;
void (*func)(void *data);
void *data;
- bool done;
+ int done;
};
struct vcpu_info {