storage_backend_rbd: remove unnessary translated message marker

Remove unnessary translated message marker _()
for the VIR_WARN messages.

Signed-off-by: Chen Hanxiao <chenhanxiao@gmail.com>
This commit is contained in:
Chen Hanxiao 2016-09-24 11:37:02 +08:00 committed by John Ferlan
parent 8fea0ad8e2
commit a21248f46a

View File

@ -427,7 +427,7 @@ virStorageBackendRBDRefreshPool(virConnectPtr conn,
if (len >= 0) if (len >= 0)
break; break;
if (len != -ERANGE) { if (len != -ERANGE) {
VIR_WARN("%s", _("A problem occurred while listing RBD images")); VIR_WARN("%s", "A problem occurred while listing RBD images");
goto cleanup; goto cleanup;
} }
VIR_FREE(names); VIR_FREE(names);
@ -582,7 +582,7 @@ virStorageBackendRBDDeleteVol(virConnectPtr conn,
VIR_DEBUG("Removing RBD image %s/%s", pool->def->source.name, vol->name); VIR_DEBUG("Removing RBD image %s/%s", pool->def->source.name, vol->name);
if (flags & VIR_STORAGE_VOL_DELETE_ZEROED) if (flags & VIR_STORAGE_VOL_DELETE_ZEROED)
VIR_WARN("%s", _("This storage backend does not support zeroed removal of volumes")); VIR_WARN("%s", "This storage backend does not support zeroed removal of volumes");
if (virStorageBackendRBDOpenRADOSConn(&ptr, conn, &pool->def->source) < 0) if (virStorageBackendRBDOpenRADOSConn(&ptr, conn, &pool->def->source) < 0)
goto cleanup; goto cleanup;