diff options
Diffstat (limited to 'plugins/pychrysa')
-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 87988ee..a292c91 100644 --- a/plugins/pychrysa/format/elf/elf.c +++ b/plugins/pychrysa/format/elf/elf.c @@ -70,7 +70,7 @@ static PyObject *py_elf_format_new(PyTypeObject *type, PyObject *args, PyObject if (!ret) return NULL; content = G_BIN_CONTENT(pygobject_get(content_obj)); - format = g_elf_format_new(content); + format = g_elf_format_new(content, NULL); result = pygobject_new(G_OBJECT(format)); |