Skip to content

Commit

Permalink
Fix array index type issue with some compilers (#632)
Browse files Browse the repository at this point in the history
This commit fixes an issue related to some array index type conversions
in Java.

See kaitai-io/kaitai_struct#956 for further
information.
  • Loading branch information
SkypLabs authored Nov 4, 2022
1 parent 5b21e81 commit c61bec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macos/ds_store.ksy
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ types:
instances:
block:
io: _root._io
pos: _root.buddy_allocator_body.block_addresses[block_id].offset
pos: _root.buddy_allocator_body.block_addresses[block_id.as<u4>].offset
type: block
if: mode > 0
types:
Expand Down

0 comments on commit c61bec5

Please sign in to comment.