summaryrefslogtreecommitdiff
path: root/src/chillmodule.cc
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2016-10-13 14:12:27 -0600
committerTuowen Zhao <ztuowen@gmail.com>2016-10-13 14:12:27 -0600
commitffe133a194e36ecbe060f08d132339b437975ea6 (patch)
tree9c7f4d854803a3bf85da2878730aa022ecb9ab0e /src/chillmodule.cc
parent43a22099d0f62f90306f47fa29471ca62b53eebd (diff)
downloadchill-ffe133a194e36ecbe060f08d132339b437975ea6.tar.gz
chill-ffe133a194e36ecbe060f08d132339b437975ea6.tar.bz2
chill-ffe133a194e36ecbe060f08d132339b437975ea6.zip
effort fix
Diffstat (limited to 'src/chillmodule.cc')
-rw-r--r--src/chillmodule.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chillmodule.cc b/src/chillmodule.cc
index 552eda8..2780e5c 100644
--- a/src/chillmodule.cc
+++ b/src/chillmodule.cc
@@ -282,7 +282,7 @@ chill_dest(PyObject *self, PyObject* args) {
static PyObject *chill_effort(PyObject *self, PyObject *args) {
strict_arg_num(args, 1, "effort");
- source_filename = intArg(args, 0);
+ effort = intArg(args,0);
Py_RETURN_NONE;
}