84e0754eb1
3 recommended fixes from upstream: - dmidecode-print-type-33-name-unconditionally.patch: Print type 33 name unconditionally. - dmidecode-dont-choke-on-invalid-processor-voltage.patch: Don't choke on invalid processor voltage. - dmidecode-fix-the-alignment-of-type-25-name.patch: Fix the alignment of type 25 name. Build fix: - dmidecode-allow-overriding-build-settings-from-env.patch: Fix the build system so that the compilation flags passed by OBS are added to the ones dmidecode needs, instead of overriding them entirely. - dmidecode.spec: Pass the CFLAGS through the environment, instead of as a parameter. OBS-URL: https://build.opensuse.org/request/show/796018 OBS-URL: https://build.opensuse.org/package/show/Base:System/dmidecode?expand=0&rev=56
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);
|