aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2010-12-22 15:31:00 +0000
committerTiago Cunha <tcunha@gmx.com>2010-12-22 15:31:00 +0000
commitbb728b89a7b0e0f1921c336d3f25ab0ee02322f8 (patch)
tree7b130934f4b366ad4094dc66a1a85dbc4e74dcf9 /tmux.h
parent64d16cf2d67c42642401cd0bbaeb278a1c00822a (diff)
downloadrtmux-bb728b89a7b0e0f1921c336d3f25ab0ee02322f8.tar.gz
rtmux-bb728b89a7b0e0f1921c336d3f25ab0ee02322f8.tar.bz2
rtmux-bb728b89a7b0e0f1921c336d3f25ab0ee02322f8.zip
Sync OpenBSD patchset 802:
Use pointer rather than index for the client's last session.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 4ae1fd2b..92dd10c9 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.588 2010-12-22 15:28:51 tcunha Exp $ */
+/* $Id: tmux.h,v 1.589 2010-12-22 15:31:00 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1153,7 +1153,7 @@ struct client {
struct mode_key_data prompt_mdata;
struct session *session;
- u_int last_session;
+ struct session *last_session;
int references;
};