From dc69bb6033bd41b79e6203080059d4f3b0eb8027 Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Thu, 6 Jan 2022 15:09:02 +0100 Subject: [PATCH] lib/types: reformat "string_of_guestcaps" The printf format string in "string_of_guestcaps" is hard to read, because it is not indented properly wrt. the rest of the source code. Indent it properly without changing its behavior. Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1942325 Signed-off-by: Laszlo Ersek Message-Id: <20220106140910.13695-2-lersek@redhat.com> Acked-by: Richard W.M. Jones --- lib/types.ml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/types.ml b/lib/types.ml index 894391ba..dc3308dc 100644 --- a/lib/types.ml +++ b/lib/types.ml @@ -423,12 +423,13 @@ let string_of_machine = function let string_of_guestcaps gcaps = sprintf "\ -gcaps_block_bus = %s -gcaps_net_bus = %s -gcaps_machine = %s -gcaps_arch = %s -gcaps_acpi = %b -" (string_of_block_type gcaps.gcaps_block_bus) + gcaps_block_bus = %s\n\ + gcaps_net_bus = %s\n\ + gcaps_machine = %s\n\ + gcaps_arch = %s\n\ + gcaps_acpi = %b\n\ + " + (string_of_block_type gcaps.gcaps_block_bus) (string_of_net_type gcaps.gcaps_net_bus) (string_of_machine gcaps.gcaps_machine) gcaps.gcaps_arch -- 2.31.1