commit | b50290f0f28649f902cdafdcd04eee157ba96083 | [log] [tgz] |
---|---|---|
author | Nico Huber <nico.h@gmx.de> | Sun Jan 28 14:30:49 2024 +0100 |
committer | Nico Huber <nico.h@gmx.de> | Sun Jan 28 14:34:49 2024 +0100 |
tree | cc591e8415a2f79a9eba01ac2cb91fd07e8c0e64 | |
parent | b18c2ccc4250914e0c5abef211de267eaad2e408 [diff] |
ext2: Drop redundant initialization (Blockdev.Read handles it now)
diff --git a/src/filo-fs-ext2.adb b/src/filo-fs-ext2.adb index 1850b50..5e34e51 100644 --- a/src/filo-fs-ext2.adb +++ b/src/filo-fs-ext2.adb
@@ -40,7 +40,7 @@ Success : out Boolean) is Static : Mount_State renames State.Static; - Super_Block : Buffer_Type (0 .. 64 * 4 - 1) := (others => 0); + Super_Block : Buffer_Type (0 .. 64 * 4 - 1); begin if Part_Len < 2 * SUPERBLOCK_SIZE then Success := False;