Inline out variable declarations.

This commit is contained in:
2023-10-05 02:53:20 +01:00
parent 65910360b6
commit 064f149107
4 changed files with 5 additions and 15 deletions

View File

@@ -345,13 +345,11 @@ public sealed partial class AppleMFS
do
{
byte[] sectors;
ErrorNumber errno = tags
? _device.
ReadSectorsTag((ulong)((nextBlock - 2) * _sectorsPerBlock) + _volMdb.drAlBlSt + _partitionStart,
(uint)_sectorsPerBlock, SectorTagType.AppleSectorTag,
out sectors)
out byte[] sectors)
: _device.
ReadSectors((ulong)((nextBlock - 2) * _sectorsPerBlock) + _volMdb.drAlBlSt + _partitionStart,
(uint)_sectorsPerBlock, out sectors);