]> xenbits.xensource.com Git - xen.git/commitdiff
tools/xentop : replace use of deprecated vwprintw
authorChristopher Clark <christopher.w.clark@gmail.com>
Wed, 18 Jul 2018 22:22:17 +0000 (15:22 -0700)
committerIan Jackson <ian.jackson@eu.citrix.com>
Fri, 12 Jun 2020 16:01:39 +0000 (17:01 +0100)
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 Clark <christopher.clark6@baesystems.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
(cherry picked from commit 2b50cdbc444c637575580dcfa6c9525a84d5cc62)

tools/xenstat/xentop/xentop.c

index 2fd2b6742e614ce699754617c309fccbbd18dbeb..c46581062bf1fe7c52cba28ee09a640f0e439998 100644 (file)
@@ -301,7 +301,7 @@ static void print(const char *fmt, ...)
        if (!batch) {
                if((current_row() < lines()-1)) {
                        va_start(args, fmt);
-                       vwprintw(stdscr, (curses_str_t)fmt, args);
+                       vw_printw(stdscr, (curses_str_t)fmt, args);
                        va_end(args);
                }
        } else {