Don't translate strings used with VIR_DEBUG

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Peter Krempa 2023-04-13 08:30:21 +02:00
parent b108a73a7b
commit 2fbb8e9a7b
2 changed files with 5 additions and 5 deletions

View File

@ -1300,7 +1300,7 @@ virNetlinkGetNeighbor(void **nlData G_GNUC_UNUSED,
*/
int virNetlinkEventServiceStop(unsigned int protocol G_GNUC_UNUSED)
{
VIR_DEBUG("%s", _(unsupported));
VIR_DEBUG("%s", unsupported);
return 0;
}
@ -1310,7 +1310,7 @@ int virNetlinkEventServiceStop(unsigned int protocol G_GNUC_UNUSED)
*/
int virNetlinkEventServiceStopAll(void)
{
VIR_DEBUG("%s", _(unsupported));
VIR_DEBUG("%s", unsupported);
return 0;
}
@ -1321,7 +1321,7 @@ int virNetlinkEventServiceStopAll(void)
int virNetlinkEventServiceStart(unsigned int protocol G_GNUC_UNUSED,
unsigned int groups G_GNUC_UNUSED)
{
VIR_DEBUG("%s", _(unsupported));
VIR_DEBUG("%s", unsupported);
return 0;
}

View File

@ -4101,7 +4101,7 @@ vzStateInitialize(bool privileged,
return VIR_DRV_STATE_INIT_ERROR;
if (prlsdkInit() < 0) {
VIR_DEBUG("%s", _("Can't initialize Parallels SDK"));
VIR_DEBUG("Can't initialize Parallels SDK");
return VIR_DRV_STATE_INIT_ERROR;
}
@ -4144,7 +4144,7 @@ vzRegister(void)
prlctl_path = virFindFileInPath(PRLCTL);
if (!prlctl_path) {
VIR_DEBUG("%s", _("Can't find prlctl command in the PATH env"));
VIR_DEBUG("Can't find prlctl command in the PATH env");
return 0;
}