]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
util: fix off-by-1 in inhibitor constants
authorDaniel P. Berrangé <berrange@redhat.com>
Tue, 7 Jan 2025 15:21:18 +0000 (15:21 +0000)
committerDaniel P. Berrangé <berrange@redhat.com>
Tue, 7 Jan 2025 16:16:16 +0000 (16:16 +0000)
The inhibitor constant values were off-by-1, so when converted into
string format, we picked the wrong names

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
src/util/virinhibitor.h

index 0a1c445d417e04d644f39df74042892114d43094..49cf32fbebd6c76aaafbac6686b703b79bfec93c 100644 (file)
@@ -26,13 +26,13 @@ typedef struct _virInhibitor virInhibitor;
 
 typedef enum {
     VIR_INHIBITOR_WHAT_NONE          = 0,
-    VIR_INHIBITOR_WHAT_SLEEP         = (1 << 1),
-    VIR_INHIBITOR_WHAT_SHUTDOWN      = (1 << 2),
-    VIR_INHIBITOR_WHAT_IDLE          = (1 << 3),
-    VIR_INHIBITOR_WHAT_POWER_KEY     = (1 << 4),
-    VIR_INHIBITOR_WHAT_SUSPEND_KEY   = (1 << 5),
-    VIR_INHIBITOR_WHAT_HIBERNATE_KEY = (1 << 6),
-    VIR_INHIBITOR_WHAT_LID_SWITCH    = (1 << 7),
+    VIR_INHIBITOR_WHAT_SLEEP         = (1 << 0),
+    VIR_INHIBITOR_WHAT_SHUTDOWN      = (1 << 1),
+    VIR_INHIBITOR_WHAT_IDLE          = (1 << 2),
+    VIR_INHIBITOR_WHAT_POWER_KEY     = (1 << 3),
+    VIR_INHIBITOR_WHAT_SUSPEND_KEY   = (1 << 4),
+    VIR_INHIBITOR_WHAT_HIBERNATE_KEY = (1 << 5),
+    VIR_INHIBITOR_WHAT_LID_SWITCH    = (1 << 6),
 } virInhibitorWhat;
 
 typedef enum {