diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-09-15 07:45:16 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-09-15 07:45:16 +0000 |
commit | f39865e8e4aa1a8918c64cfc40fb0acc644861a4 (patch) | |
tree | f36a70a9efa45bdc23111911b7a1da48978a846b /server.c | |
parent | 85486246761d1af0f0f13a20606077f11fa2d799 (diff) | |
download | rtmux-f39865e8e4aa1a8918c64cfc40fb0acc644861a4.tar.gz rtmux-f39865e8e4aa1a8918c64cfc40fb0acc644861a4.tar.bz2 rtmux-f39865e8e4aa1a8918c64cfc40fb0acc644861a4.zip |
The default terminal size should be 80x24, not 80x25.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -97,7 +97,7 @@ server_create_client(int fd) c->session = NULL; c->tty.sx = 80; - c->tty.sy = 25; + c->tty.sy = 24; screen_init(&c->status, c->tty.sx, 1, 0); c->message_string = NULL; |