diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-08-18 07:47:53 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-08-18 07:47:53 (GMT) |
commit | ef66e5930efdfccb6b7db125ada6908650e745da (patch) | |
tree | 49ee4ca6e32de55c93dae6ab48b44b0b78fad18f /plugins/dex | |
parent | 9167c2a44efba513aaf8cac6d5589c565ed14ddf (diff) |
Removed a useless cast in the Python bindings.
Diffstat (limited to 'plugins/dex')
-rw-r--r-- | plugins/dex/python/format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dex/python/format.c b/plugins/dex/python/format.c index 5a277c6..8f18fc8 100644 --- a/plugins/dex/python/format.c +++ b/plugins/dex/python/format.c @@ -476,7 +476,7 @@ PyTypeObject *get_python_dex_format_type(void) .tp_methods = py_dex_format_methods, .tp_getset = py_dex_format_getseters, - .tp_new = (newfunc)py_dex_format_new + .tp_new = py_dex_format_new }; |