diff options
Diffstat (limited to 'src/pkg/debug/dwarf/open.go')
-rw-r--r-- | src/pkg/debug/dwarf/open.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/debug/dwarf/open.go b/src/pkg/debug/dwarf/open.go index 6fc34fed3..1b50beaa4 100644 --- a/src/pkg/debug/dwarf/open.go +++ b/src/pkg/debug/dwarf/open.go @@ -51,7 +51,7 @@ func New(abbrev, aranges, frame, info, line, pubnames, ranges, str []byte) (*Dat ranges: ranges, str: str, abbrevCache: make(map[uint32]abbrevTable), - typeCache: make(map[uint32]Type), + typeCache: make(map[Offset]Type), }; // Sniff .debug_info to figure out byte order. |