summaryrefslogtreecommitdiff
path: root/plugins/pychrysa
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-05-19 21:21:30 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-05-19 21:21:30 (GMT)
commitf828d126a74facac145531822c6ea9c8259b50e0 (patch)
tree521bfa44de551f30934ee321339a7a87d12a3243 /plugins/pychrysa
parente92c777c91612c8508d263645480c6c3889b679d (diff)
Loaded the ELF internal symbols using all the available CPUs.
Diffstat (limited to 'plugins/pychrysa')
-rw-r--r--plugins/pychrysa/format/elf/elf.c2
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));