aboutsummaryrefslogtreecommitdiff
path: root/block/bochs.c
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2016-06-23 16:37:26 -0600
committerKevin Wolf <kwolf@redhat.com>2016-07-05 16:46:26 +0200
commit5411541270f1d9e8eb1fb442fa4908c4398d5d88 (patch)
tree12d876f78a7e64b1ce98a05795b1f79653e1aa91 /block/bochs.c
parent8cc9c6e92bed8459bffaf5a22af8560f2cd8042b (diff)
block: Use bool as appropriate for BDS members
Using int for values that are only used as booleans is confusing. While at it, rearrange a couple of members so that all the bools are contiguous. Signed-off-by: Eric Blake <eblake@redhat.com> Reviewed-by: Fam Zheng <famz@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/bochs.c')
-rw-r--r--block/bochs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/bochs.c b/block/bochs.c
index 4194f1dd50..6427ad4fa2 100644
--- a/block/bochs.c
+++ b/block/bochs.c
@@ -104,7 +104,7 @@ static int bochs_open(BlockDriverState *bs, QDict *options, int flags,
struct bochs_header bochs;
int ret;
- bs->read_only = 1; // no write support yet
+ bs->read_only = true; /* no write support yet */
ret = bdrv_pread(bs->file->bs, 0, &bochs, sizeof(bochs));
if (ret < 0) {