From 3a52965fb5be4b0b2f0054bf6e8d7f80f9aa99fc Mon Sep 17 00:00:00 2001 From: vit9696 Date: Tue, 22 Aug 2023 08:11:39 +0300 Subject: [PATCH] OcVariableRuntimeLib: Fix SectionGuid formatting, thx @Goldfish64 --- Changelog.md | 3 +++ Library/OcVariableRuntimeLib/OcVariableRuntimeLib.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 07dd55b7..df553147 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,8 @@ OpenCore Changelog ================== +#### v0.9.5 +- Fixed GUID formatting for legacy NVRAM saving + #### v0.9.4 - Fixed kext blocker `Exclude` strategy for prelinked on 32-bit versions of macOS - Fixed `ForceAquantiaEthernet` quirk on macOS 14 beta 2, thx @Shikumo diff --git a/Library/OcVariableRuntimeLib/OcVariableRuntimeLib.c b/Library/OcVariableRuntimeLib/OcVariableRuntimeLib.c index c4346342..26c23a09 100644 --- a/Library/OcVariableRuntimeLib/OcVariableRuntimeLib.c +++ b/Library/OcVariableRuntimeLib/OcVariableRuntimeLib.c @@ -465,7 +465,7 @@ SaveNvram ( Context.StringBuffer, "\t\t%g%c" "\t\t%c", - Context.SectionGuid, + &Context.SectionGuid, '\n', '\n' );