]> xenbits.xensource.com Git - libvirt.git/commitdiff
include: Move version information
authorAndrea Bolognani <abologna@redhat.com>
Tue, 26 Apr 2022 15:32:19 +0000 (17:32 +0200)
committerAndrea Bolognani <abologna@redhat.com>
Tue, 26 Apr 2022 15:38:35 +0000 (17:38 +0200)
It belongs to the comment for VIR_DOMAIN_AFFECT_CONFIG, not to
the unrelated one immediately after it.

Fixes: 807cdbf75976f88e8a23b26951f263029cc9e5f4
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
include/libvirt/libvirt-domain.h

index 6fed42c47a7b05e86c6b229665c8468f7a3818ef..9386f5189cf17d193946602e8f55c6dcf0cd0124 100644 (file)
@@ -323,8 +323,8 @@ typedef virDomainControlInfo *virDomainControlInfoPtr;
 typedef enum {
     VIR_DOMAIN_AFFECT_CURRENT = 0,      /* Affect current domain state. (Since: v0.9.2)  */
     VIR_DOMAIN_AFFECT_LIVE    = 1 << 0, /* Affect running domain state. (Since: v0.9.2)  */
-    VIR_DOMAIN_AFFECT_CONFIG  = 1 << 1, /* Affect persistent domain state.  */
-    /* 1 << 2 is reserved for virTypedParameterFlags (Since: v0.9.2) */
+    VIR_DOMAIN_AFFECT_CONFIG  = 1 << 1, /* Affect persistent domain state. (Since: v0.9.2) */
+    /* 1 << 2 is reserved for virTypedParameterFlags */
 } virDomainModificationImpact;
 
 /**