ext2: Rename Inode_Extents -> Inline_Extents
diff --git a/src/filo-fs-ext2.adb b/src/filo-fs-ext2.adb
index 3a7b6ac..bab0c69 100644
--- a/src/filo-fs-ext2.adb
+++ b/src/filo-fs-ext2.adb
@@ -205,10 +205,10 @@
          Triple_Indirect   : Unsigned_32;
       end record
       with
-         Size => Inode_Extents'Length * 8,
-         Object_Size => Inode_Extents'Length * 8;
+         Size => Inline_Extents'Length * 8,
+         Object_Size => Inline_Extents'Length * 8;
 
-      function I_Blocks is new Ada.Unchecked_Conversion (Inode_Extents, Inode_Blocks);
+      function I_Blocks is new Ada.Unchecked_Conversion (Inline_Extents, Inode_Blocks);
       function I_Blocks (State : T) return Inode_Blocks is (I_Blocks (State.Inode.Inline));
 
       Addr_Per_Block : constant FSBlock_Logical := FSBlock_Logical (Static.Block_Size / 4);
@@ -509,7 +509,7 @@
          end;
       end Next_Ref;
 
-      Inline_Extents : Ext2.Inode_Extents renames State.Inode.Inline;
+      Inline_Extents : Ext2.Inline_Extents renames State.Inode.Inline;
       Inode_Magic : constant Unsigned_16 := Header_Magic (Inline_Extents);
       Inode_Entries : constant Natural := Header_Entries (Inline_Extents);
       First_Logical : constant FSBlock_Logical := Extent_Logical (Inline_Extents, 1);