X-Git-Url: http://git.madism.org/?p=apps%2Fmadtty.git;a=blobdiff_plain;f=demo%2Fboxshell.c;fp=demo%2Fboxshell.c;h=a1d1fa88abf49592b3490344e62f89b4d8ef3001;hp=42c25790758f50ab11c5993208eacd558ef44a84;hb=bf09a79a00c99c715e7fbc65bf50634704c4233b;hpb=95d605c6b6281c9faae8bf6db465fe7920fa12fb diff --git a/demo/boxshell.c b/demo/boxshell.c index 42c2579..a1d1fa8 100644 --- a/demo/boxshell.c +++ b/demo/boxshell.c @@ -72,7 +72,7 @@ int main(int argc, char *argv[]) /* create a window with a frame */ term_win = newwin(h + 2, w + 2, 1, 2); wattrset(term_win, COLOR_PAIR(7*8+7-0)); /* black over white */ - wborder(term_win, ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '); + wborder(term_win, '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0'); mvwprintw(term_win, 0, 27, " Term In a Box "); wrefresh(term_win);