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'
);