diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-12-20 00:17:22 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-12-20 00:17:22 +0000 |
commit | 9358cfaf4a566a060af81312ff73ee1e3e8c8ced (patch) | |
tree | 9bb80e4b6807c9b434f7b463c7caed9cdb581584 /tmux.h | |
parent | a51dcdc430150b688d56ec35e8c96ce6f978f68b (diff) | |
download | rtmux-9358cfaf4a566a060af81312ff73ee1e3e8c8ced.tar.gz rtmux-9358cfaf4a566a060af81312ff73ee1e3e8c8ced.tar.bz2 rtmux-9358cfaf4a566a060af81312ff73ee1e3e8c8ced.zip |
Use pointer rather than index for the client's last session.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1155,7 +1155,7 @@ struct client { struct mode_key_data prompt_mdata; struct session *session; - u_int last_session; + struct session *last_session; int references; }; |