diff options
Diffstat (limited to 'python_modules/spice_parser.py')
-rw-r--r-- | python_modules/spice_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python_modules/spice_parser.py b/python_modules/spice_parser.py index 43e930c5..4c8a57a6 100644 --- a/python_modules/spice_parser.py +++ b/python_modules/spice_parser.py @@ -18,7 +18,7 @@ def parseVariableDef(toks): t = ptypes.ArrayType(t, array_size) if pointer != None: - t = ptypes.PointerType(t); + t = ptypes.PointerType(t) return ptypes.Member(name, t, attributes) |