We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad2270a commit 01d566eCopy full SHA for 01d566e
src/Synercoding.FileFormats.Pdf/LowLevel/XRef/Entry.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
3
namespace Synercoding.FileFormats.Pdf.LowLevel.XRef
4
{
@@ -28,7 +28,7 @@ public void FillSpan(Span<byte> bytes)
28
_fillSpanLeadingZero(bytes.Slice(11, 5), GenerationNumber);
29
bytes[16] = 0x20;
30
31
- bytes[17] = IsFree ? 0x66 : 0x6E;
+ bytes[17] = IsFree ? (byte)0x66 : (byte)0x6E;
32
bytes[18] = 0x0D;
33
bytes[19] = 0x0A;
34
}
0 commit comments