summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-12-20 00:17:22 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-12-20 00:17:22 +0000
commit9358cfaf4a566a060af81312ff73ee1e3e8c8ced (patch)
tree9bb80e4b6807c9b434f7b463c7caed9cdb581584 /tmux.h
parenta51dcdc430150b688d56ec35e8c96ce6f978f68b (diff)
Use pointer rather than index for the client's last session.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 0f36c92e..8b384af1 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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;
};