diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-20 21:45:53 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-20 21:45:53 +0000 |
commit | 9b9ceac657c76ed9fe76f76f3276c1d05593942c (patch) | |
tree | 7914517bbbdf90cbcb26cf0acfefb63fcbf21f02 | |
parent | f53b91736740df62333f8c2521a6ac70d4bf6cc2 (diff) | |
download | rtmux-9b9ceac657c76ed9fe76f76f3276c1d05593942c.tar.gz rtmux-9b9ceac657c76ed9fe76f76f3276c1d05593942c.tar.bz2 rtmux-9b9ceac657c76ed9fe76f76f3276c1d05593942c.zip |
Damnit, wrong variable name..
-rw-r--r-- | screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.26 2007-11-20 21:45:26 nicm Exp $ */ +/* $Id: screen.c,v 1.27 2007-11-20 21:45:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -132,7 +132,7 @@ screen_resize(struct screen *s, u_int sx, u_int sy) s->rupper = 0; s->rlower = s->dy - 1; - s->ysize = dy; + s->ysize = sy; if (sy < oy) { ny = oy - sy; |