diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2011-06-21 13:20:33 +0200 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2011-06-21 13:20:33 +0200 |
commit | 5ec91855d818078523653e79562921bcea9bef14 (patch) | |
tree | 2d71c90fceac333c0747619e2c60d18d1757ede6 /python_modules/spice_parser.py | |
parent | aa57d2f70cac4bcbaf9324c5efb8c9254caaeb30 (diff) | |
download | spice-5ec91855d818078523653e79562921bcea9bef14.tar.gz spice-5ec91855d818078523653e79562921bcea9bef14.tar.xz spice-5ec91855d818078523653e79562921bcea9bef14.zip |
python: remove c-ism trailing ;
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) |