summaryrefslogtreecommitdiff
path: root/python/progress.h
diff options
context:
space:
mode:
Diffstat (limited to 'python/progress.h')
-rw-r--r--python/progress.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/progress.h b/python/progress.h
index d653b42d..5859eea0 100644
--- a/python/progress.h
+++ b/python/progress.h
@@ -1,6 +1,8 @@
#ifndef PROGRESS_H
#define PROGRESS_H
+#include<iostream>
+
struct PyOpProgressStruct : public OpProgress
{
@@ -12,7 +14,7 @@ struct PyOpProgressStruct : public OpProgress
return;
// Build up the argument list...
- PyObject *arglist = Py_BuildValue("(fO)", Percent, py_update_callback_args);
+ PyObject *arglist = Py_BuildValue("fO", Percent,py_update_callback_args);
// ...for calling the Python compare function.
PyObject *result = PyEval_CallObject(py_update_callback_func,arglist);