From 73b9dfeb31481306e6ab0a8a3a8ecdaafa2db041 Mon Sep 17 00:00:00 2001 From: Laine Stump Date: Mon, 12 Jul 2010 23:35:43 -0400 Subject: [PATCH] Eliminate compiler warning due to gettext string with no format args --- tools/virsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virsh.c b/tools/virsh.c index 8e6e2b4f5..38ecc0fb6 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -1462,7 +1462,7 @@ cmdManagedSaveRemove(vshControl *ctl, const vshCmd *cmd) hassave = virDomainHasManagedSaveImage(dom, 0); if (hassave < 0) { - vshError(ctl, _("Failed to check for domain managed save image")); + vshError(ctl, "%s", _("Failed to check for domain managed save image")); goto cleanup; } -- 2.39.5