]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix wrong indentation for virDomainState
authorClaudio Bley <cbley@av-test.de>
Thu, 10 Jan 2013 11:44:23 +0000 (12:44 +0100)
committerClaudio Bley <cbley@av-test.de>
Thu, 10 Jan 2013 11:46:20 +0000 (12:46 +0100)
include/libvirt/libvirt.h.in

index 09c89c5be0c103a4d6b92b8a774c53f91db36d8a..d2640e1112d724ccadd6b21747faa9ef8eaebbd9 100644 (file)
@@ -116,14 +116,14 @@ typedef virDomain *virDomainPtr;
  * A domain may be in different states at a given point in time
  */
 typedef enum {
-     VIR_DOMAIN_NOSTATE = 0,     /* no state */
-     VIR_DOMAIN_RUNNING = 1,     /* the domain is running */
-     VIR_DOMAIN_BLOCKED = 2,     /* the domain is blocked on resource */
-     VIR_DOMAIN_PAUSED  = 3,     /* the domain is paused by user */
-     VIR_DOMAIN_SHUTDOWN= 4,     /* the domain is being shut down */
-     VIR_DOMAIN_SHUTOFF = 5,     /* the domain is shut off */
-     VIR_DOMAIN_CRASHED = 6,     /* the domain is crashed */
-     VIR_DOMAIN_PMSUSPENDED = 7, /* the domain is suspended by guest
+    VIR_DOMAIN_NOSTATE = 0,     /* no state */
+    VIR_DOMAIN_RUNNING = 1,     /* the domain is running */
+    VIR_DOMAIN_BLOCKED = 2,     /* the domain is blocked on resource */
+    VIR_DOMAIN_PAUSED  = 3,     /* the domain is paused by user */
+    VIR_DOMAIN_SHUTDOWN= 4,     /* the domain is being shut down */
+    VIR_DOMAIN_SHUTOFF = 5,     /* the domain is shut off */
+    VIR_DOMAIN_CRASHED = 6,     /* the domain is crashed */
+    VIR_DOMAIN_PMSUSPENDED = 7, /* the domain is suspended by guest
                                     power management */
 
 #ifdef VIR_ENUM_SENTINELS
@@ -132,7 +132,7 @@ typedef enum {
      * added to the libvirt API. It reflects the last state supported
      * by this version of the libvirt API.
      */
-     VIR_DOMAIN_LAST
+    VIR_DOMAIN_LAST
 #endif
 } virDomainState;