[libvirt] [PATCH 6/8] util: conf: Fix parameters alignment

Andrea Bolognani abologna at redhat.com
Fri Jul 15 17:46:28 UTC 2016


The parameters for virConfGetValueLLong() were not aligned
properly.
---
 src/util/virconf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/util/virconf.c b/src/util/virconf.c
index d635539..f2d543c 100644
--- a/src/util/virconf.c
+++ b/src/util/virconf.c
@@ -1304,8 +1304,8 @@ int virConfGetValueSSizeT(virConfPtr conf,
  * Returns: 1 if the value was present, 0 if missing, -1 on error
  */
 int virConfGetValueLLong(virConfPtr conf,
-                        const char *setting,
-                        long long *value)
+                         const char *setting,
+                         long long *value)
 {
     virConfValuePtr cval = virConfGetValue(conf, setting);
 
-- 
2.7.4




More information about the libvir-list mailing list