remote_driver.c: fix non-literal format strings w/o args

This commit is contained in:
Laine Stump 2010-11-11 12:05:21 -05:00
parent 5b04f42c6f
commit 45dc5a142f

View File

@ -8481,7 +8481,7 @@ remoteStreamEventAddCallback(virStreamPtr st,
if (privst->cb) { if (privst->cb) {
remoteError(VIR_ERR_INTERNAL_ERROR, remoteError(VIR_ERR_INTERNAL_ERROR,
_("multiple stream callbacks not supported")); "%s", _("multiple stream callbacks not supported"));
goto cleanup; goto cleanup;
} }
@ -8521,7 +8521,7 @@ remoteStreamEventUpdateCallback(virStreamPtr st,
if (!privst->cb) { if (!privst->cb) {
remoteError(VIR_ERR_INTERNAL_ERROR, remoteError(VIR_ERR_INTERNAL_ERROR,
_("no stream callback registered")); "%s", _("no stream callback registered"));
goto cleanup; goto cleanup;
} }
@ -8548,7 +8548,7 @@ remoteStreamEventRemoveCallback(virStreamPtr st)
if (!privst->cb) { if (!privst->cb) {
remoteError(VIR_ERR_INTERNAL_ERROR, remoteError(VIR_ERR_INTERNAL_ERROR,
_("no stream callback registered")); "%s", _("no stream callback registered"));
goto cleanup; goto cleanup;
} }