Add a colon after 'internal error'

As we do for other errors with an extra string.
This commit is contained in:
Ján Tomko 2013-07-24 10:44:46 +02:00
parent cd7b969c39
commit a884307447

View File

@ -730,7 +730,7 @@ virErrorMsg(virErrorNumber error, const char *info)
return NULL;
case VIR_ERR_INTERNAL_ERROR:
if (info != NULL)
errmsg = _("internal error %s");
errmsg = _("internal error: %s");
else
errmsg = _("internal error");
break;