=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-resize-pane.c,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- src/usr.bin/tmux/cmd-resize-pane.c 2016/10/14 22:14:22 1.26 +++ src/usr.bin/tmux/cmd-resize-pane.c 2016/10/16 17:55:14 1.27 @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-resize-pane.c,v 1.26 2016/10/14 22:14:22 nicm Exp $ */ +/* $OpenBSD: cmd-resize-pane.c,v 1.27 2016/10/16 17:55:14 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -60,12 +60,12 @@ int x, y; if (args_has(args, 'M')) { - if (cmd_mouse_window(&cmdq->item->mouse, &s) == NULL) + if (cmd_mouse_window(&cmdq->mouse, &s) == NULL) return (CMD_RETURN_NORMAL); if (c == NULL || c->session != s) return (CMD_RETURN_NORMAL); c->tty.mouse_drag_update = cmd_resize_pane_mouse_update; - cmd_resize_pane_mouse_update(c, &cmdq->item->mouse); + cmd_resize_pane_mouse_update(c, &cmdq->mouse); return (CMD_RETURN_NORMAL); }