]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Add a colon after 'internal error'
authorJán Tomko <jtomko@redhat.com>
Wed, 24 Jul 2013 08:44:46 +0000 (10:44 +0200)
committerJán Tomko <jtomko@redhat.com>
Wed, 24 Jul 2013 13:59:44 +0000 (15:59 +0200)
As we do for other errors with an extra string.

src/util/virerror.c

index b92c6d10526a3af0fc0629fc0716fb9267ac1347..ca25678ffe8f9bbc8e0c040841a80085aed50d00 100644 (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;