mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Member or type can be made internal.
This commit is contained in:
@@ -321,7 +321,7 @@ namespace DiscImageChef.Filesystems
|
||||
/// Superblock for Minix v1 and V2 filesystems
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
public struct MinixSuperBlock
|
||||
struct MinixSuperBlock
|
||||
{
|
||||
/// <summary>0x00, inodes on volume</summary>
|
||||
public ushort s_ninodes;
|
||||
@@ -349,7 +349,7 @@ namespace DiscImageChef.Filesystems
|
||||
/// Superblock for Minix v3 filesystems
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
public struct Minix3SuperBlock
|
||||
struct Minix3SuperBlock
|
||||
{
|
||||
/// <summary>0x00, inodes on volume</summary>
|
||||
public uint s_ninodes;
|
||||
|
||||
Reference in New Issue
Block a user