25 lines
734 B
Diff
25 lines
734 B
Diff
|
From: Jean Delvare <jdelvare@suse.de>
|
||
|
Date: Mon, 23 Mar 2020 16:47:30 +0100
|
||
|
Subject: dmidecode: Fix the alignment of type 25 name
|
||
|
Git-commit: 557c3c373a9992d45d4358a6a2ccf53b03276f39
|
||
|
Patch-mainline: yes
|
||
|
|
||
|
No tabulation needed before DMI structure names.
|
||
|
|
||
|
Signed-off-by: Jean Delvare <jdelvare@suse.de>
|
||
|
---
|
||
|
dmidecode.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/dmidecode.c
|
||
|
+++ b/dmidecode.c
|
||
|
@@ -4629,7 +4629,7 @@ static void dmi_decode(const struct dmi_
|
||
|
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);
|