From 85e09ab4f2f82b6877164f603ba7d0da541e5636 Mon Sep 17 00:00:00 2001 From: John Zaitseff Date: Mon, 11 Jul 2011 08:05:36 +1000 Subject: [PATCH] Replace calls to wprintw() with waddstr() where appropriate --- src/intf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intf.c b/src/intf.c index 4739f86..5bb0a70 100644 --- a/src/intf.c +++ b/src/intf.c @@ -440,9 +440,9 @@ bool getanswer (WINDOW *win) curs_set(CURS_OFF); if (key == 'Y') { - wprintw(win, "Yes."); + waddstr(win, "Yes."); } else { - wprintw(win, "No."); + waddstr(win, "No."); } wrefresh(win);