diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-11-02 20:01:26 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-11-02 20:01:26 +0000 |
commit | 8c29f7413bd41e0f7afb1b53dc73128dfd42fb6f (patch) | |
tree | 2a8ecf685a8f14f673a6b7e1036c7d5ac79032f1 /session.c | |
parent | cf782c4f546fb11f3157de7aecff85845b0dbed9 (diff) | |
parent | 17655e5ba65e37787cd9920e1a89aedf6f623957 (diff) | |
download | rtmux-8c29f7413bd41e0f7afb1b53dc73128dfd42fb6f.tar.gz rtmux-8c29f7413bd41e0f7afb1b53dc73128dfd42fb6f.tar.bz2 rtmux-8c29f7413bd41e0f7afb1b53dc73128dfd42fb6f.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -38,10 +38,6 @@ static struct winlink *session_next_alert(struct winlink *); static struct winlink *session_previous_alert(struct winlink *); static void session_group_remove(struct session *); -static u_int session_group_count(struct session_group *); -static void session_group_synchronize1(struct session *, struct session *); - -static u_int session_group_count(struct session_group *); static void session_group_synchronize1(struct session *, struct session *); RB_GENERATE(sessions, session, entry, session_cmp); @@ -623,7 +619,7 @@ session_group_remove(struct session *s) } /* Count number of sessions in session group. */ -static u_int +u_int session_group_count(struct session_group *sg) { struct session *s; |