diff --git a/src/bin/termio.c b/src/bin/termio.c index b1ca5fde..6d709f20 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -3793,7 +3793,7 @@ _rep_mouse_up(Termio *sd, Evas_Event_Mouse_Up *ev, int cx, int cy) } static Eina_Bool -_rep_mouse_move(Termio *sd, Evas_Event_Mouse_Move *ev, int cx, int cy) +_rep_mouse_move(Termio *sd, int cx, int cy) { char buf[64]; Eina_Bool ret = EINA_FALSE; @@ -4400,7 +4400,7 @@ _smart_cb_mouse_move(void *data, sd->mouse.cx = cx; sd->mouse.cy = cy; if (!shift && !ctrl) - if (_rep_mouse_move(sd, ev, cx, cy)) return; + if (_rep_mouse_move(sd, cx, cy)) return; if (sd->link.down.dnd) { sd->pty->selection.makesel = EINA_FALSE;