diff options
author | Philippe Mathieu-Daude <f4bug@amsat.org> | 2022-01-19 13:14:39 +0100 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2022-01-28 16:50:43 -0600 |
commit | 3a8fa0edd18f76e222d983a31e486e76a51348a7 (patch) | |
tree | 1da804381dab9ea7cecba5dfd14e7a4abb2e42e3 /qapi | |
parent | 523f5a9971c0766aefa2cfe42c4e7c3b54a21da6 (diff) |
qapi/block: Cosmetic change in BlockExportType schema
Fix long line introduced in commit bb01ea73110 ("qapi/block:
Restrict vhost-user-blk to CONFIG_VHOST_USER_BLK_SERVER").
Suggested-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20220119121439.214821-1-f4bug@amsat.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/block-export.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qapi/block-export.json b/qapi/block-export.json index f9ce79a974..f183522d0d 100644 --- a/qapi/block-export.json +++ b/qapi/block-export.json @@ -278,7 +278,8 @@ ## { 'enum': 'BlockExportType', 'data': [ 'nbd', - { 'name': 'vhost-user-blk', 'if': 'CONFIG_VHOST_USER_BLK_SERVER' }, + { 'name': 'vhost-user-blk', + 'if': 'CONFIG_VHOST_USER_BLK_SERVER' }, { 'name': 'fuse', 'if': 'CONFIG_FUSE' } ] } ## |