]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: smbios: add missing colon after UUID
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 29 Jan 2024 17:51:24 +0000 (18:51 +0100)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 2 Feb 2024 18:56:34 +0000 (19:56 +0100)
For consistent formatting add a colon ':' after the UUID label.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
cmd/smbios.c

index 67f3a9f5f19010c93ea12bccdf34c19e0397a389..62935ecd1a23ba60198daed13348773793b86f52 100644 (file)
@@ -76,7 +76,7 @@ static void smbios_print_type1(struct smbios_type1 *table)
        smbios_print_str("Version", table, table->version);
        smbios_print_str("Serial Number", table, table->serial_number);
        if (table->length >= 0x19) {
-               printf("\tUUID %pUl\n", table->uuid);
+               printf("\tUUID: %pUl\n", table->uuid);
                smbios_print_str("Wake Up Type", table, table->serial_number);
        }
        if (table->length >= 0x1b) {