Skip to content

Commit

Permalink
Fix ancient typo in struct decoder. refs #184
Browse files Browse the repository at this point in the history
  • Loading branch information
GraylinKim committed Mar 15, 2015
1 parent 4b3bd9b commit 20156ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sc2reader/decoders.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def read_struct(self, datatype=None):
data = self._buffer.read_bytes(4) # self.read_uint32()

elif datatype == 0x08: # u64
data = self._buffer.read_unit64()
data = self._buffer.read_uint64()

elif datatype == 0x09: # vint
data = self.read_vint()
Expand Down

1 comment on commit 20156ec

@dsjoerg
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seriously ancient!

Please sign in to comment.