Missed one explicit type

This commit is contained in:
Matt Nadareski
2025-11-05 09:20:48 -05:00
parent 3bb501ce0c
commit a269edd6ea

View File

@@ -268,7 +268,7 @@ namespace SabreTools.Data.Extensions
public override long Seek(long offset, SeekOrigin origin)
{
// Get the intended position for the ISO9660 stream
var targetPosition = origin switch
long targetPosition = origin switch
{
SeekOrigin.Begin => offset,
SeekOrigin.Current => Position + offset,