]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virTypedParamsDeserialize: Remove unnecessary line breaks
authorPeter Krempa <pkrempa@redhat.com>
Tue, 18 Apr 2023 12:45:32 +0000 (14:45 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Tue, 2 May 2023 12:32:46 +0000 (14:32 +0200)
All changed lines even fit into 80 columns.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
src/util/virtypedparam.c

index 974ec51a79279f8b489aa26c9cc8c5682ad058a6..fe4c04bcea637bf85af76bab917e83fcffee0e2b 100644 (file)
@@ -563,28 +563,22 @@ virTypedParamsDeserialize(struct _virTypedParameterRemote *remote_params,
         param->type = remote_param->value.type;
         switch ((virTypedParameterType) param->type) {
         case VIR_TYPED_PARAM_INT:
-            param->value.i =
-                remote_param->value.remote_typed_param_value.i;
+            param->value.i = remote_param->value.remote_typed_param_value.i;
             break;
         case VIR_TYPED_PARAM_UINT:
-            param->value.ui =
-                remote_param->value.remote_typed_param_value.ui;
+            param->value.ui = remote_param->value.remote_typed_param_value.ui;
             break;
         case VIR_TYPED_PARAM_LLONG:
-            param->value.l =
-                remote_param->value.remote_typed_param_value.l;
+            param->value.l = remote_param->value.remote_typed_param_value.l;
             break;
         case VIR_TYPED_PARAM_ULLONG:
-            param->value.ul =
-                remote_param->value.remote_typed_param_value.ul;
+            param->value.ul = remote_param->value.remote_typed_param_value.ul;
             break;
         case VIR_TYPED_PARAM_DOUBLE:
-            param->value.d =
-                remote_param->value.remote_typed_param_value.d;
+            param->value.d = remote_param->value.remote_typed_param_value.d;
             break;
         case VIR_TYPED_PARAM_BOOLEAN:
-            param->value.b =
-                remote_param->value.remote_typed_param_value.b;
+            param->value.b = remote_param->value.remote_typed_param_value.b;
             break;
         case VIR_TYPED_PARAM_STRING:
             param->value.s = g_strdup(remote_param->value.remote_typed_param_value.s);