diff options
author | Filipe Cabecinhas <me@filcab.net> | 2012-07-06 16:20:13 +0000 |
---|---|---|
committer | Filipe Cabecinhas <me@filcab.net> | 2012-07-06 16:20:13 +0000 |
commit | 5d261b0601cbded609a47b476a5da4dcf45c036c (patch) | |
tree | 1254ec6acdf0ec8d6571c8f72849d24c402dc5e2 | |
parent | b8c7dada33bdb63a5ec39e8dbf43a9cc11d354f7 (diff) | |
download | bcm5719-llvm-5d261b0601cbded609a47b476a5da4dcf45c036c.tar.gz bcm5719-llvm-5d261b0601cbded609a47b476a5da4dcf45c036c.zip |
Fix a wrong variable name.
llvm-svn: 159832
-rw-r--r-- | lldb/test/lldbutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lldbutil.py b/lldb/test/lldbutil.py index 7e4b4fcee8e..5dee35df3b4 100644 --- a/lldb/test/lldbutil.py +++ b/lldb/test/lldbutil.py @@ -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" |