Skip to content
Snippets Groups Projects
Commit a7c9b298 authored by alexey.stratulat's avatar alexey.stratulat
Browse files

Removed the parameter in the function dannite. Since it should not accept...

Removed the parameter in the function dannite. Since it should not accept parameters and now it complies with the Python calling convention
parent cbba5229
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ static PyObject *dap_init(PyObject *self, PyObject *args){
return PyLong_FromLong(0);
}
static PyObject *dap_deinit(PyObject *self){
static PyObject *dap_deinit(){
dap_config_deinit();
dap_common_deinit();
return PyLong_FromLong(0);
......
......@@ -11,7 +11,7 @@ extern "C" {
static PyObject *dap_init(PyObject *self, PyObject *args);
static PyObject *dap_deinit(PyObject *self);
static PyObject *dap_deinit();
static PyObject *dap_set_log_level(PyObject *self, PyObject *args);
......@@ -46,4 +46,4 @@ PyMODINIT_FUNC PyInit_libdap_python_module(void);
#ifdef __cplusplus
}
#endif
\ No newline at end of file
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment