diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-11-02 12:21:50 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2010-11-02 12:42:54 +0100 |
commit | f61d69607d58a81944a4bfcfc1f260d09a686460 (patch) | |
tree | 16ec22d7d48014e41a17b5449e2297b63dc0022b /ui | |
parent | 3d6d306c104abe37610184f12e9342fcbc078395 (diff) | |
download | qemu-f61d69607d58a81944a4bfcfc1f260d09a686460.zip |
spice-core: fix warning when building with spice < 0.6.0
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/spice-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/spice-core.c b/ui/spice-core.c index 45807ed6e1..e97a72d3d6 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -240,7 +240,7 @@ void qemu_spice_init(void) char *x509_key_file = NULL, *x509_cert_file = NULL, *x509_cacert_file = NULL; - int port, tls_port, len, addr_flags, streaming_video; + int port, tls_port, len, addr_flags; spice_image_compression_t compression; spice_wan_compression_t wan_compr; @@ -344,7 +344,7 @@ void qemu_spice_init(void) str = qemu_opt_get(opts, "streaming-video"); if (str) { - streaming_video = parse_stream_video(str); + int streaming_video = parse_stream_video(str); spice_server_set_streaming_video(spice_server, streaming_video); } |