From: Peter Krempa Date: Tue, 18 Apr 2023 12:45:32 +0000 (+0200) Subject: virTypedParamsDeserialize: Remove unnecessary line breaks X-Git-Tag: v9.4.0-rc1~135 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81391c0e1dbcf2f21d73928549fe6d319316a8c2;p=thirdparty%2Flibvirt.git virTypedParamsDeserialize: Remove unnecessary line breaks All changed lines even fit into 80 columns. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko Reviewed-by: Martin Kletzander --- diff --git a/src/util/virtypedparam.c b/src/util/virtypedparam.c index 974ec51a79..fe4c04bcea 100644 --- a/src/util/virtypedparam.c +++ b/src/util/virtypedparam.c @@ -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);