aboutsummaryrefslogtreecommitdiff
path: root/src/burn/stub
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-12-30 15:11:35 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-12-30 18:40:49 -0600
commitc86f75bcc104d5dc457fa2900a3ebb9c38f6ff65 (patch)
tree421da00d5fccb6013d5820f12d90ba84488df3d9 /src/burn/stub
parente8cb88c57e8c7108d6efcbf264ed24f5a392da18 (diff)
downloadwix-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.cpp9
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") 8static DWORD dwMagic = BURN_SECTION_MAGIC;
9static DWORD dwMagic = 0x00f14300; 9static DWORD dwVersion = BURN_SECTION_VERSION;
10static DWORD dwVersion = 0x00000003;
11 10
12static GUID guidBundleId = { }; 11static GUID guidBundleId = { };
13 12