diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-05-19 21:21:30 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-05-19 21:21:30 (GMT) |
commit | f828d126a74facac145531822c6ea9c8259b50e0 (patch) | |
tree | 521bfa44de551f30934ee321339a7a87d12a3243 /plugins/pychrysa/format/elf | |
parent | e92c777c91612c8508d263645480c6c3889b679d (diff) |
Loaded the ELF internal symbols using all the available CPUs.
Diffstat (limited to 'plugins/pychrysa/format/elf')
-rw-r--r-- | plugins/pychrysa/format/elf/elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pychrysa/format/elf/elf.c b/plugins/pychrysa/format/elf/elf.c index 72a9647..2787702 100644 --- a/plugins/pychrysa/format/elf/elf.c +++ b/plugins/pychrysa/format/elf/elf.c @@ -77,7 +77,7 @@ static PyObject *py_elf_format_new(PyTypeObject *type, PyObject *args, PyObject } content = G_BIN_CONTENT(pygobject_get(content_obj)); - format = g_elf_format_new(content, NULL); + format = g_elf_format_new(content, NULL, NULL/*FIXME*/); result = pygobject_new(G_OBJECT(format)); |