summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ferlan <jferlan@redhat.com>2018-03-20 11:45:15 -0400
committerJohn Ferlan <jferlan@redhat.com>2018-03-23 10:11:17 -0400
commit1706bef61704dd4f793cdccfe4cd3f8d7809c899 (patch)
tree981de72c5de9bd5c9e8ddca6f6f64a79d6d6c170
parent9f7373e8c1d3a047a04e0ed59ff4d00864e61089 (diff)
downloadlibvirt-1706bef61704dd4f793cdccfe4cd3f8d7809c899.tar.gz
qemu: Fix virQEMUCapsCommands formatting
Starting with commit id 'fab9d6e1' the formatting of: { "command-name", QEMU_CAPS_NAME }, was altered to: { "command-name", QEMU_CAPS_NAME}, and then commit id 'e2b05c9a' altered that to: { "command-name", QEMU_CAPS_NAME} So, let's just fix that up to make things consistent with the rest of the structures. Signed-off-by: John Ferlan <jferlan@redhat.com>
-rw-r--r--src/qemu/qemu_capabilities.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c
index 7f40534732..d5a5a3be62 100644
--- a/src/qemu/qemu_capabilities.c
+++ b/src/qemu/qemu_capabilities.c
@@ -1578,9 +1578,9 @@ struct virQEMUCapsStringFlags virQEMUCapsCommands[] = {
{ "migrate-incoming", QEMU_CAPS_INCOMING_DEFER },
{ "query-hotpluggable-cpus", QEMU_CAPS_QUERY_HOTPLUGGABLE_CPUS },
{ "query-qmp-schema", QEMU_CAPS_QUERY_QMP_SCHEMA },
- { "query-cpu-model-expansion", QEMU_CAPS_QUERY_CPU_MODEL_EXPANSION},
- { "query-cpu-definitions", QEMU_CAPS_QUERY_CPU_DEFINITIONS},
- { "query-named-block-nodes", QEMU_CAPS_QUERY_NAMED_BLOCK_NODES}
+ { "query-cpu-model-expansion", QEMU_CAPS_QUERY_CPU_MODEL_EXPANSION },
+ { "query-cpu-definitions", QEMU_CAPS_QUERY_CPU_DEFINITIONS },
+ { "query-named-block-nodes", QEMU_CAPS_QUERY_NAMED_BLOCK_NODES },
};
struct virQEMUCapsStringFlags virQEMUCapsMigration[] = {