> From: "Daniel P. Berrange" <[email protected]>
>
> The virStateInitialize method and several cgroups methods were
> using an 'int privileged' parameter or similar for dual-state
> values. These are better represented with the bool type.
>
> Signed-off-by: Daniel P. Berrange <[email protected]>
> ---
> +++ b/src/driver.h
> @@ -1487,7 +1487,7 @@ struct _virStorageDriver {
> };
>
> # ifdef WITH_LIBVIRTD
> -typedef int (*virDrvStateInitialize) (int privileged);
> +typedef int (*virDrvStateInitialize) (bool privileged);
ACK.
> +++ b/src/remote/remote_driver.c
> @@ -68,7 +68,7 @@
> # define HYPER_TO_ULONG(_to, _from) (_to) = (_from)
> #endif
>
> -static int inside_daemon = 0;
> +static bool inside_daemon = false;
Another case of non-necessary static initialization to 0.
--
libvir-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/libvir-list