diff options
author | Jean Delvare <jdelvare@suse.de> | 2020-03-23 16:47:30 +0100 |
---|---|---|
committer | Jean Delvare <jdelvare@suse.de> | 2020-03-23 16:47:30 +0100 |
commit | 557c3c373a9992d45d4358a6a2ccf53b03276f39 (patch) | |
tree | 15654e267f066d31cf4179a810b6a8845632663a | |
parent | 1347ccca96db6e157af39fcc565466fa98b9220b (diff) | |
download | dmidecode-557c3c373a9992d45d4358a6a2ccf53b03276f39.tar.gz |
dmidecode: Fix the alignment of type 25 name
No tabulation needed before DMI structure names. Signed-off-by: Jean Delvare <jdelvare@suse.de>
-rw-r--r-- | dmidecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dmidecode.c b/dmidecode.c index 5a0631e..b459ed0 100644 --- a/dmidecode.c +++ b/dmidecode.c @@ -4651,7 +4651,7 @@ static void dmi_decode(const struct dmi_header *h, u16 ver) break; case 25: /* 7.26 System Power Controls */ - printf("\tSystem Power Controls\n"); + printf("System Power Controls\n"); if (h->length < 0x09) break; printf("\tNext Scheduled Power-on:"); dmi_power_controls_power_on(data + 0x04); |