commit | 94f58b2f0cc9948c179ba8dcfd03002c83556a2c | [log] [tgz] |
---|---|---|
author | Christopher Ferris <cferris@google.com> | Tue Apr 11 23:14:55 2017 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Apr 11 23:14:56 2017 +0000 |
tree | 8d526d03dae8980835bab38e54ae75fe64d2e91b | |
parent | 6c0468bba71d2f853c2f9517268516ab3331053d [diff] | |
parent | 93d4f8b2fa1924963f397a0d16e3e38ac4ef2352 [diff] |
Merge "Fix missing parse_open_file method."
diff --git a/libc/tools/gensyscalls.py b/libc/tools/gensyscalls.py index fa35984..ab7c247 100755 --- a/libc/tools/gensyscalls.py +++ b/libc/tools/gensyscalls.py
@@ -511,7 +511,7 @@ def parse_file(self, file_path): logging.debug("parse_file: %s" % file_path) with open(file_path) as fp: - parse_open_file(fp) + self.parse_open_file(fp) class State: