diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-01-29 18:51:24 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-02-02 19:56:34 +0100 |
commit | e799f8a48d1d4930402078a766dd9e999e63471b (patch) | |
tree | 8e678aac57d65b35c6efedd74e5c444616721229 /cmd | |
parent | 7ca4b0ea6a5135cdf1e44fa6b338301e50e2af24 (diff) | |
download | u-boot-e799f8a48d1d4930402078a766dd9e999e63471b.tar.gz u-boot-e799f8a48d1d4930402078a766dd9e999e63471b.tar.bz2 u-boot-e799f8a48d1d4930402078a766dd9e999e63471b.zip |
cmd: smbios: add missing colon after UUID
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>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/smbios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/smbios.c b/cmd/smbios.c index 67f3a9f5f1..62935ecd1a 100644 --- a/cmd/smbios.c +++ b/cmd/smbios.c @@ -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) { |