Re: [Qemu-devel] [PATCH 1/2] async: Use bool for boolean struct members and remove a hole

2012-05-01 Thread Stefan Hajnoczi
On Sun, Apr 29, 2012 at 07:08:45PM +0200, Stefan Weil wrote: > Using bool reduces the size of the structure and improves readability. > A hole in the structure was removed. > > Signed-off-by: Stefan Weil > --- > async.c |6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) Thanks, a

[Qemu-devel] [PATCH 1/2] async: Use bool for boolean struct members and remove a hole

2012-04-29 Thread Stefan Weil
Using bool reduces the size of the structure and improves readability. A hole in the structure was removed. Signed-off-by: Stefan Weil --- async.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/async.c b/async.c index ecdaf15..85cc641 100644 --- a/async.c +++ b/asy