Skip to content

Commit

Permalink
Fixed bug raised in issue #1358
Browse files Browse the repository at this point in the history
  • Loading branch information
Harm van Schaaijk committed May 30, 2024
1 parent 7110660 commit ec28628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenXmlFormats/Wordprocessing/Numbering.cs
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ public CT_AbstractNum()
this.multiLevelTypeField = new CT_MultiLevelType();
this.nsidField = new CT_LongHexNumber();
this.nsidField.val = new byte[4];
Array.Copy(BitConverter.GetBytes(DateTime.Now.Ticks), 4, this.nsidField.val, 0, 4);
Array.Copy(BitConverter.GetBytes(DateTime.Now.Ticks), 0, this.nsidField.val, 0, 4);
}

[XmlElement(Order = 0)]
Expand Down

0 comments on commit ec28628

Please sign in to comment.