Eliminate compiler warning due to gettext string with no format args

This commit is contained in:
Laine Stump 2010-07-12 23:35:43 -04:00
parent 7327604177
commit 73b9dfeb31

View File

@ -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;
}