On 1/15/19 8:23 AM, Ján Tomko wrote:
> Split out parts of the config parsing code to make
> the parent function easier to read.
> 
> Signed-off-by: Ján Tomko <[email protected]>
> ---
>  src/qemu/qemu_conf.c | 12 +++++++++++-
>  1 file changed, 11 insertions(+), 1 deletion(-)
> 
> diff --git a/src/qemu/qemu_conf.c b/src/qemu/qemu_conf.c
> index 29f948346d..b7d258f17a 100644
> --- a/src/qemu/qemu_conf.c
> +++ b/src/qemu/qemu_conf.c
> @@ -423,6 +423,16 @@ virQEMUDriverConfigHugeTLBFSInit(virHugeTLBFSPtr 
> hugetlbfs,
>  }
>  
>  
> +static int
> +virQEMUDriverConfigLoadLogEntry(virQEMUDriverConfigPtr cfg,
> +                                virConfPtr conf)
> +{
> +    if (virConfGetValueBool(conf, "log_timestamp", &cfg->logTimestamp) < 0)
> +        return -1;
> +
> +    return 0;

    return virConfGetValueBool(...);

> +}
> +

blank line

Reviewed-by: John Ferlan <[email protected]>

John

[...]

--
libvir-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/libvir-list

Reply via email to