summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/wixl/msi.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wixl/msi.vala b/tools/wixl/msi.vala
index f566ca8..e15e0f4 100644
--- a/tools/wixl/msi.vala
+++ b/tools/wixl/msi.vala
@@ -237,7 +237,7 @@ namespace Wixl {
sql_insert = "INSERT INTO `File` (`File`, `Component_`, `FileName`, `FileSize`, `Attributes`, `Sequence`) VALUES (?, ?, ?, ?, ?, ?)";
}
- public Libmsi.Record add (string File, string Component, string FileName, int FileSize, int Attributes, int Sequence = 0) throws GLib.Error {
+ public Libmsi.Record add (string File, string Component, string FileName, int FileSize, int Attributes, int Sequence = 1) throws GLib.Error {
var rec = new Libmsi.Record (6);
if (!rec.set_string (1, File) ||