Skip to content

Commit

Permalink
removed unused variable in pyerl
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto@debian32 committed May 11, 2011
1 parent 72109b7 commit de84acc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plugins/pyerl/pyerl.c
Expand Up @@ -301,11 +301,10 @@ PyObject *pyerl_sr(PyObject * self, PyObject * args) {
void pyerl_call_registered(void *func, ei_x_buff *x) {

PyObject *pyargs = PyTuple_New(1);
PyObject *ret;

PyTuple_SetItem(pyargs, 0, erl_to_py(x));

ret = python_call((PyObject *) func, pyargs, 0);
python_call((PyObject *) func, pyargs, 0);
}

PyObject *pyerl_register_process(PyObject * self, PyObject * args) {
Expand Down

0 comments on commit de84acc

Please sign in to comment.