Fix a wrong variable name.

llvm-svn: 159832
This commit is contained in:
Filipe Cabecinhas 2012-07-06 16:20:13 +00:00
parent b8c7dada33
commit 5d261b0601
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ def bytearray_to_int(bytes, bytesize):
import struct
if bytesize == 1:
return ba[0]
return bytes[0]
# Little endian followed by a format character.
template = "<%c"