summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2016-12-07 21:44:23 -0500
committerJordan Wiens <jordan@psifertex.com>2016-12-07 21:44:23 -0500
commitc49b584d2a71b13840c9a133c8dbbbc5f5ab40e2 (patch)
tree6d8b105d51b373b3044f26d542c61180b06a9856 /python
parent1ae01b140d99f07c86c9f56374e26a062ff34c0c (diff)
fix references to BNFreeTypeParserResult
Diffstat (limited to 'python')
-rw-r--r--python/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/__init__.py b/python/__init__.py
index c5b7e5be..e9083805 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -7450,7 +7450,7 @@ class Architecture(object):
variables[parse.variables[i].name] = Type(core.BNNewTypeReference(parse.variables[i].type))
for i in xrange(0, parse.functionCount):
functions[parse.functions[i].name] = Type(core.BNNewTypeReference(parse.functions[i].type))
- BNFreeTypeParserResult(parse)
+ core.BNFreeTypeParserResult(parse)
return (TypeParserResult(types, variables, functions), error_str)
def parse_types_from_source_file(self, filename, include_dirs = []):
@@ -7491,7 +7491,7 @@ class Architecture(object):
variables[parse.variables[i].name] = Type(core.BNNewTypeReference(parse.variables[i].type))
for i in xrange(0, parse.functionCount):
functions[parse.functions[i].name] = Type(core.BNNewTypeReference(parse.functions[i].type))
- BNFreeTypeParserResult(parse)
+ core.BNFreeTypeParserResult(parse)
return (TypeParserResult(types, variables, functions), error_str)
def register_calling_convention(self, cc):