Skip to content

Commit a269edd

Browse files
committed
Missed one explicit type
1 parent 3bb501c commit a269edd

File tree

1 file changed

+1
-1
lines changed
  • SabreTools.Serialization/Extensions

1 file changed

+1
-1
lines changed

SabreTools.Serialization/Extensions/CDROM.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ public override int Read(byte[] buffer, int offset, int count)
268268
public override long Seek(long offset, SeekOrigin origin)
269269
{
270270
// Get the intended position for the ISO9660 stream
271-
var targetPosition = origin switch
271+
long targetPosition = origin switch
272272
{
273273
SeekOrigin.Begin => offset,
274274
SeekOrigin.Current => Position + offset,

0 commit comments

Comments
 (0)