diff options
author | 2009-09-15 07:45:16 +0000 | |
---|---|---|
committer | 2009-09-15 07:45:16 +0000 | |
commit | 8808189850282d64f541688bb533dd1a7755efe2 (patch) | |
tree | 5e8084548b35cebfff8335cffd4e59b73287dfb1 /usr.bin/tmux/server.c | |
parent | cpu status flag, cpuid added to cpu_info. (diff) | |
download | wireguard-openbsd-8808189850282d64f541688bb533dd1a7755efe2.tar.xz wireguard-openbsd-8808189850282d64f541688bb533dd1a7755efe2.zip |
The default terminal size should be 80x24, not 80x25.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r-- | usr.bin/tmux/server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c index 71384915d27..b21fa1ed8cd 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.36 2009/09/14 11:25:35 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.37 2009/09/15 07:45:16 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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; |