diff mbox series

[2/7] cmd: smbios: add missing colon after UUID

Message ID 20240129210453.31070-3-heinrich.schuchardt@canonical.com
State Accepted, archived
Commit e799f8a48d1d4930402078a766dd9e999e63471b
Delegated to: Tom Rini
Headers show
Series smbios: missing strings, RISC-V processor ID | expand

Commit Message

Heinrich Schuchardt Jan. 29, 2024, 9:04 p.m. UTC
For consistent formatting add a colon ':' after the UUID label.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
---
 cmd/smbios.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ilias Apalodimas Feb. 1, 2024, 8:40 a.m. UTC | #1
On Mon, 29 Jan 2024 at 23:05, Heinrich Schuchardt
<heinrich.schuchardt@canonical.com> wrote:
>
> For consistent formatting add a colon ':' after the UUID label.
>
> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
> ---
>  cmd/smbios.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/cmd/smbios.c b/cmd/smbios.c
> index 67f3a9f5f19..62935ecd1a2 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) {
> --
> 2.43.0
>

Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
diff mbox series

Patch

diff --git a/cmd/smbios.c b/cmd/smbios.c
index 67f3a9f5f19..62935ecd1a2 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) {