ia64/xen-unstable
changeset 18922:68b76ad4faf7
xentop: Fix fprintf() build failure.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Thu Dec 11 22:32:20 2008 +0000 (2008-12-11) |
parents | 7802a247e6f9 |
children | df2ee10097c7 |
files | tools/xenstat/xentop/xentop.c |
line diff
1.1 --- a/tools/xenstat/xentop/xentop.c Thu Dec 11 13:26:02 2008 +0000 1.2 +++ b/tools/xenstat/xentop/xentop.c Thu Dec 11 22:32:20 2008 +0000 1.3 @@ -254,7 +254,7 @@ static void fail(const char *str) 1.4 { 1.5 if(cwin != NULL && !isendwin()) 1.6 endwin(); 1.7 - fprintf(stderr, str); 1.8 + fprintf(stderr, "%s", str); 1.9 exit(1); 1.10 } 1.11