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/elf/python | |
parent | 9167c2a44efba513aaf8cac6d5589c565ed14ddf (diff) |
Removed a useless cast in the Python bindings.
Diffstat (limited to 'plugins/elf/python')
-rw-r--r-- | plugins/elf/python/format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/elf/python/format.c b/plugins/elf/python/format.c index 87b590b..6c1b12f 100644 --- a/plugins/elf/python/format.c +++ b/plugins/elf/python/format.c @@ -230,7 +230,7 @@ PyTypeObject *get_python_elf_format_type(void) .tp_methods = py_elf_format_methods, .tp_getset = py_elf_format_getseters, - .tp_new = (newfunc)py_elf_format_new + .tp_new = py_elf_format_new }; |