diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-01-12 23:22:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-01-12 23:22:15 +0000 |
commit | 6ee254699bf787d78835419be2b3241fb037d444 (patch) | |
tree | 07fe67dab517e4990f344fe2c00e65cef4d25b81 /usr.bin/systat | |
parent | 0b62f5dc36fc7203a74cdc812c4234ae188fdfd2 (diff) |
Update to ncurses 5.7, with local changes reapplied.
This is around eight years worth of changes (previously we were around ncurses
5.2), too many to list - many bug fixes and also a few new functions.
A major bump for libcurses, libpanel, libform and libmenu.
ok deraadt
Diffstat (limited to 'usr.bin/systat')
-rw-r--r-- | usr.bin/systat/engine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/systat/engine.c b/usr.bin/systat/engine.c index 8efcdc75b62..a30437ec529 100644 --- a/usr.bin/systat/engine.c +++ b/usr.bin/systat/engine.c @@ -1,4 +1,4 @@ -/* $Id: engine.c,v 1.10 2009/06/11 23:18:52 chl Exp $ */ +/* $Id: engine.c,v 1.11 2010/01/12 23:22:14 nicm Exp $ */ /* * Copyright (c) 2001, 2007 Can Erkin Acar <canacar@openbsd.org> * @@ -1044,7 +1044,7 @@ setup_term(int dmax) } void -resize_term(void) +do_resize_term(void) { struct winsize ws; @@ -1315,7 +1315,7 @@ engine_loop(int countmax) if (gotsig_close) break; if (gotsig_resize) { - resize_term(); + do_resize_term(); gotsig_resize = 0; need_update = 1; } |