From: des Date: Tue, 24 Jul 2007 14:10:28 +0000 (+0000) Subject: #130: false is spelles FALSE in curses-land. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df80f120f61cd10754a4e686c3cfe503cf04d82a;p=varnish #130: false is spelles FALSE in curses-land. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1753 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishhist/varnishhist.c b/varnish-cache/bin/varnishhist/varnishhist.c index d54610e9..0d5b83ec 100644 --- a/varnish-cache/bin/varnishhist/varnishhist.c +++ b/varnish-cache/bin/varnishhist/varnishhist.c @@ -247,7 +247,7 @@ do_curses(struct VSL_data *vd) raw(); noecho(); nonl(); - intrflush(stdscr, false); + intrflush(stdscr, FALSE); curs_set(0); erase(); for (;;) { diff --git a/varnish-cache/bin/varnishstat/varnishstat.c b/varnish-cache/bin/varnishstat/varnishstat.c index 14b8d59c..ec85884b 100644 --- a/varnish-cache/bin/varnishstat/varnishstat.c +++ b/varnish-cache/bin/varnishstat/varnishstat.c @@ -78,7 +78,7 @@ do_curses(struct varnish_stats *VSL_stats, int delay) raw(); noecho(); nonl(); - intrflush(stdscr, false); + intrflush(stdscr, FALSE); curs_set(0); erase(); diff --git a/varnish-cache/bin/varnishtop/varnishtop.c b/varnish-cache/bin/varnishtop/varnishtop.c index 7a9b93fe..a4d28af8 100644 --- a/varnish-cache/bin/varnishtop/varnishtop.c +++ b/varnish-cache/bin/varnishtop/varnishtop.c @@ -201,7 +201,7 @@ do_curses(struct VSL_data *vd) raw(); noecho(); nonl(); - intrflush(stdscr, false); + intrflush(stdscr, FALSE); curs_set(0); erase(); for (;;) {