diff options
author | Alon Levy <alevy@redhat.com> | 2010-09-01 15:08:52 +0300 |
---|---|---|
committer | Alon Levy <alevy@redhat.com> | 2010-09-01 15:08:52 +0300 |
commit | ba611cd5f9cb503c5aa329fe5a6dfb2a70ae8478 (patch) | |
tree | c1495e919526c020a95ee5ef65a7bcd96d4012b5 | |
parent | d268f005314916629722c236ddf6b6b189520609 (diff) |
spice-vmc: compiler warning fix on fprintfspice.v18
-rw-r--r-- | hw/spice-vmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/spice-vmc.c b/hw/spice-vmc.c index 1255d465f..b9c5eb66b 100644 --- a/hw/spice-vmc.c +++ b/hw/spice-vmc.c @@ -182,7 +182,7 @@ static void vmc_print_optional_subtypes(void) fprintf(stderr, "supported subtypes: "); for(i=0; *psubtype != NULL; ++psubtype, ++i) { if (i == 0) { - fprintf(stderr, *psubtype); + fprintf(stderr, "%s", *psubtype); } else { fprintf(stderr, ", %s", *psubtype); } |