Re: [Xen-devel] [PATCH] tools/xentop : replace use of deprecated vwprintw

2019-02-19 Thread Wei Liu
On Tue, Feb 19, 2019 at 05:45:40PM +, George Dunlap wrote: > On Wed, Jul 18, 2018 at 11:23 PM Christopher Clark > wrote: > > > > gcc-8.1 complains: > > > > | xentop.c: In function 'print': > > | xentop.c:304:4: error: 'vwprintw' is deprecated > > [-Werror=deprecated-declarations] > > | vw

Re: [Xen-devel] [PATCH] tools/xentop : replace use of deprecated vwprintw

2019-02-19 Thread George Dunlap
On Wed, Jul 18, 2018 at 11:23 PM Christopher Clark wrote: > > gcc-8.1 complains: > > | xentop.c: In function 'print': > | xentop.c:304:4: error: 'vwprintw' is deprecated > [-Werror=deprecated-declarations] > | vwprintw(stdscr, (curses_str_t)fmt, args); > | ^~~~ > > vw_printw (note the

Re: [Xen-devel] [PATCH] tools/xentop : replace use of deprecated vwprintw

2018-08-23 Thread Wei Liu
On Wed, Aug 22, 2018 at 11:33:56PM +0200, Hans van Kranenburg wrote: > Hi, > > On 07/19/2018 08:53 AM, Wei Liu wrote: > > On Wed, Jul 18, 2018 at 03:22:17PM -0700, Christopher Clark wrote: > >> gcc-8.1 complains: > >> > >> | xentop.c: In function 'print': > >> | xentop.c:304:4: error: 'vwprintw' i

Re: [Xen-devel] [PATCH] tools/xentop : replace use of deprecated vwprintw

2018-08-22 Thread Hans van Kranenburg
Hi, On 07/19/2018 08:53 AM, Wei Liu wrote: > On Wed, Jul 18, 2018 at 03:22:17PM -0700, Christopher Clark wrote: >> gcc-8.1 complains: >> >> | xentop.c: In function 'print': >> | xentop.c:304:4: error: 'vwprintw' is deprecated >> [-Werror=deprecated-declarations] >> | vwprintw(stdscr, (curses_

Re: [Xen-devel] [PATCH] tools/xentop : replace use of deprecated vwprintw

2018-07-18 Thread Wei Liu
On Wed, Jul 18, 2018 at 03:22:17PM -0700, Christopher Clark wrote: > gcc-8.1 complains: > > | xentop.c: In function 'print': > | xentop.c:304:4: error: 'vwprintw' is deprecated > [-Werror=deprecated-declarations] > | vwprintw(stdscr, (curses_str_t)fmt, args); > | ^~~~ > > vw_printw (

[Xen-devel] [PATCH] tools/xentop : replace use of deprecated vwprintw

2018-07-18 Thread Christopher Clark
gcc-8.1 complains: | xentop.c: In function 'print': | xentop.c:304:4: error: 'vwprintw' is deprecated [-Werror=deprecated-declarations] | vwprintw(stdscr, (curses_str_t)fmt, args); | ^~~~ vw_printw (note the underscore) is a non-deprecated alternative. Signed-off-by: Christopher Cla