diff options
Diffstat (limited to 'plugins/pychrysa/analysis/contents')
-rw-r--r-- | plugins/pychrysa/analysis/contents/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/pychrysa/analysis/contents/file.c b/plugins/pychrysa/analysis/contents/file.c index b145662..d356197 100644 --- a/plugins/pychrysa/analysis/contents/file.c +++ b/plugins/pychrysa/analysis/contents/file.c @@ -109,6 +109,7 @@ PyTypeObject py_file_content_type = { .tp_getset = py_file_content_getseters, .tp_new = (newfunc)py_file_content_new */ + .tp_new = (newfunc)py_file_content_new }; @@ -160,7 +161,7 @@ PyTypeObject *get_python_file_content_type(void) * Remarques : - * * * ******************************************************************************/ -#include "../content.h" +#include "../content.h"////////////////////////////////////////// bool register_python_file_content(PyObject *module) { PyTypeObject *py_file_content_type; /* Type Python 'BinContent' */ |