Skip to content

Commit

Permalink
Add extra padding in generated .frx file (fixes #33)
Browse files Browse the repository at this point in the history
  • Loading branch information
chelh committed Jul 7, 2017
1 parent 8565017 commit 0eb2613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VBASync/Model/VbaFolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ public void Read(string path)
bw.Write((short)0x424c);
bw.Write(new byte[3]);
bw.Write(size >> 8);
bw.Write(new byte[11]);
bw.Write(new byte[15]);
bw.Write(bytes);
}
}
Expand Down

0 comments on commit 0eb2613

Please sign in to comment.