From 949dd07b191c2b9c6f7a6a1c55ae12771b8bdba1 Mon Sep 17 00:00:00 2001 From: Jim Fehlig Date: Wed, 21 Oct 2009 12:59:43 +0200 Subject: [PATCH] Fix virsh.c compilation warning * tools/virsh.c: call to vshError() containing 'doexit' parameter sneaked in after said parameter was removed --- tools/virsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virsh.c b/tools/virsh.c index 47122d508d..6b93405ef0 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -2518,7 +2518,7 @@ cmdMigrate (vshControl *ctl, const vshCmd *cmd) * a libvirt URI, or a hypervisor specific URI. */ if (migrateuri != NULL) { - vshError(ctl, FALSE, "%s", _("migrate: Unexpected migrateuri for peer2peer/direct migration")); + vshError(ctl, "%s", _("migrate: Unexpected migrateuri for peer2peer/direct migration")); goto done; }