From: Christian Ehrhardt <christian.ehrhardt@xxxxxxxxxxxxx> Since purged is a bool variable it should be initialized by false instead of 0. Suggested-by: Sergio Durigan Junior <sergio.durigan@xxxxxxxxxxxxx> Signed-off-by: Christian Ehrhardt <christian.ehrhardt@xxxxxxxxxxxxx> --- src/security/virt-aa-helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c index 218e07bfb0..898f9f1a16 100644 --- a/src/security/virt-aa-helper.c +++ b/src/security/virt-aa-helper.c @@ -1438,7 +1438,7 @@ main(int argc, char **argv) char *profile = NULL; char *include_file = NULL; off_t size; - bool purged = 0; + bool purged = false; if (virGettextInitialize() < 0 || virErrorInitialize() < 0) { -- 2.33.1