Sync OpenBSD patchset 1022:

Get client_width and client_height the right way round, from Stephen
Thirlwall.
pull/1/head
Tiago Cunha 2012-02-02 01:58:16 +00:00
parent 0fd0030a2a
commit 98e24b9f70
1 changed files with 2 additions and 2 deletions

View File

@ -303,8 +303,8 @@ format_client(struct format_tree *ft, struct client *c)
time_t t;
format_add(ft, "client_cwd", "%s", c->cwd);
format_add(ft, "client_height", "%u", c->tty.sx);
format_add(ft, "client_width", "%u", c->tty.sy);
format_add(ft, "client_height", "%u", c->tty.sy);
format_add(ft, "client_width", "%u", c->tty.sx);
format_add(ft, "client_tty", "%s", c->tty.path);
format_add(ft, "client_termname", "%s", c->tty.termname);