diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-12-30 15:11:35 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-12-30 18:40:49 -0600 |
commit | c86f75bcc104d5dc457fa2900a3ebb9c38f6ff65 (patch) | |
tree | 421da00d5fccb6013d5820f12d90ba84488df3d9 /src/burn/stub | |
parent | e8cb88c57e8c7108d6efcbf264ed24f5a392da18 (diff) | |
download | wix-c86f75bcc104d5dc457fa2900a3ebb9c38f6ff65.tar.gz wix-c86f75bcc104d5dc457fa2900a3ebb9c38f6ff65.tar.bz2 wix-c86f75bcc104d5dc457fa2900a3ebb9c38f6ff65.zip |
Revert .wixburn version since the format didn't change.
Diffstat (limited to 'src/burn/stub')
-rw-r--r-- | src/burn/stub/StubSection.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/burn/stub/StubSection.cpp b/src/burn/stub/StubSection.cpp index 2191a138..62d3e91e 100644 --- a/src/burn/stub/StubSection.cpp +++ b/src/burn/stub/StubSection.cpp | |||
@@ -2,12 +2,11 @@ | |||
2 | 2 | ||
3 | #include "precomp.h" | 3 | #include "precomp.h" |
4 | 4 | ||
5 | #pragma section(".wixburn",read) | 5 | #pragma section(BURN_SECTION_NAME,read) |
6 | 6 | ||
7 | // If these defaults ever change, be sure to update constants in burn\engine\section.cpp as well. | 7 | #pragma data_seg(push, BURN_SECTION_NAME) |
8 | #pragma data_seg(push, ".wixburn") | 8 | static DWORD dwMagic = BURN_SECTION_MAGIC; |
9 | static DWORD dwMagic = 0x00f14300; | 9 | static DWORD dwVersion = BURN_SECTION_VERSION; |
10 | static DWORD dwVersion = 0x00000003; | ||
11 | 10 | ||
12 | static GUID guidBundleId = { }; | 11 | static GUID guidBundleId = { }; |
13 | 12 | ||