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
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
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
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_
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 (
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