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;
}