From: Philippe Mathieu-Daude Date: Wed, 19 Jan 2022 12:14:39 +0000 (+0100) Subject: qapi/block: Cosmetic change in BlockExportType schema X-Git-Tag: v7.0.0-rc0~70^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a8fa0edd18f76e222d983a31e486e76a51348a7;p=thirdparty%2Fqemu.git 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 Acked-by: Markus Armbruster Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20220119121439.214821-1-f4bug@amsat.org> Reviewed-by: Eric Blake Signed-off-by: Eric Blake --- diff --git a/qapi/block-export.json b/qapi/block-export.json index f9ce79a974b..f183522d0d2 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' } ] } ##