From 9ec67871751bb00eec8ba5cb7221a5e9eb8703ad Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Wed, 1 May 2019 22:50:59 +0100 Subject: [PATCH] Tape partition number is byte sized. --- DiscImageChef.CommonTypes/Structs/TapePartition.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/DiscImageChef.CommonTypes/Structs/TapePartition.cs b/DiscImageChef.CommonTypes/Structs/TapePartition.cs index 658b7f706..a0de7938c 100644 --- a/DiscImageChef.CommonTypes/Structs/TapePartition.cs +++ b/DiscImageChef.CommonTypes/Structs/TapePartition.cs @@ -35,20 +35,21 @@ // ---------------------------------------------------------------------------- // Copyright © 2011-2019 Natalia Portillo // ****************************************************************************/ + namespace DiscImageChef.CommonTypes.Structs { public struct TapePartition { /// - /// Partition number + /// Partition number /// - public uint Number; + public byte Number; /// - /// First block, inclusive, of the partition + /// First block, inclusive, of the partition /// public ulong FirstBlock; /// - /// Last block, inclusive, of the partition + /// Last block, inclusive, of the partition /// public ulong LastBlock; }