Skip to content

Commit

Permalink
Fix incorrect usage of string keys for enum values Only integer keys …
Browse files Browse the repository at this point in the history
…are allowed

Closes kaitai-io/kaitai_struct#1132
  • Loading branch information
Mingun committed Sep 22, 2024
1 parent e533644 commit 9a6d66a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions scientific/nt_mdt/nt_mdt.ksy
Original file line number Diff line number Diff line change
Expand Up @@ -649,19 +649,19 @@ enums:

data_type:
0: unknown0
'-1': int8
-1: int8
1: uint8
'-2': int16
-2: int16
2: uint16
'-4': int32
-4: int32
4: uint32
'-8': int64
-8: int64
8: uint64
'-5892': float32
'-9990': float48
'-13320': float64
'-16138': float80
'-65544': floatfix
-5892: float32
-9990: float48
-13320: float64
-16138: float80
-65544: floatfix


xml_scan_location:
Expand Down

0 comments on commit 9a6d66a

Please sign in to comment.