]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
bhyve: unify error message for UUID generation
authorJán Tomko <jtomko@redhat.com>
Fri, 17 Mar 2023 21:57:42 +0000 (22:57 +0100)
committerJán Tomko <jtomko@redhat.com>
Mon, 20 Mar 2023 13:32:40 +0000 (14:32 +0100)
All the other places spell UUID in all caps.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
src/bhyve/bhyve_parse_command.c

index 2a5959ba1ddf3fd19f77687a899c76b2c765f179..4b0aaab05687e0a1bc07d7ba0885fc2c118640f5 100644 (file)
@@ -947,7 +947,7 @@ bhyveParseCommandLineString(const char* nativeConfig,
     def->virtType = VIR_DOMAIN_VIRT_BHYVE;
     if (virUUIDGenerate(def->uuid) < 0) {
         virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                       _("Failed to generate uuid"));
+                       _("Failed to generate UUID"));
         return NULL;
     }
     def->id = -1;