Skip to content

Commit 01d566e

Browse files
committed
test build error
1 parent ad2270a commit 01d566e

File tree

1 file changed

+2
-2
lines changed
  • src/Synercoding.FileFormats.Pdf/LowLevel/XRef

1 file changed

+2
-2
lines changed

src/Synercoding.FileFormats.Pdf/LowLevel/XRef/Entry.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22

33
namespace Synercoding.FileFormats.Pdf.LowLevel.XRef
44
{
@@ -28,7 +28,7 @@ public void FillSpan(Span<byte> bytes)
2828
_fillSpanLeadingZero(bytes.Slice(11, 5), GenerationNumber);
2929
bytes[16] = 0x20;
3030

31-
bytes[17] = IsFree ? 0x66 : 0x6E;
31+
bytes[17] = IsFree ? (byte)0x66 : (byte)0x6E;
3232
bytes[18] = 0x0D;
3333
bytes[19] = 0x0A;
3434
}

0 commit comments

Comments
 (0)