On 5/4/21 12:05 PM, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" <dgilb...@redhat.com> > > Accidental use of "true" as a boolean; spotted by coverity > and Peter. > > Fixes: b99784ef6c3 > Fixes: d795f47466e > Reported-by: Peter Maydell <peter.mayd...@linaro.org> > Reported-by: Coverity (CID 1432373, 1432292, 1432288) > Signed-off-by: Dr. David Alan Gilbert <dgilb...@redhat.com> > --- > tests/qtest/migration-test.c | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > > diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c > index 3a711bb492..4d989f191b 100644 > --- a/tests/qtest/migration-test.c > +++ b/tests/qtest/migration-test.c > @@ -898,8 +898,8 @@ static void test_xbzrle(const char *uri) > > migrate_set_parameter_int(from, "xbzrle-cache-size", 33554432); > > - migrate_set_capability(from, "xbzrle", "true"); > - migrate_set_capability(to, "xbzrle", "true"); > + migrate_set_capability(from, "xbzrle", true); > + migrate_set_capability(to, "xbzrle", true);
Funny one =) Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com>