summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2013-10-12 17:56:00 +0800
committerChristophe Fergeau <cfergeau@redhat.com>2013-10-18 15:12:50 +0200
commit56e7876d8f935f573db5fa44d7a15bc345310917 (patch)
tree2ed5504cc67d709e293163fa60cdb09bdcc8e49f
parentf0336ac8326186fa72fe6a35932617092f6bf07b (diff)
downloadspice-56e7876d8f935f573db5fa44d7a15bc345310917.tar.gz
spice-56e7876d8f935f573db5fa44d7a15bc345310917.tar.xz
spice-56e7876d8f935f573db5fa44d7a15bc345310917.zip
red_tunnel_worker: Fix build error due to missing monitor_latency argument
Fix missing monitor_latency argument in red_channel_client_create call. Signed-off-by: Axel Lin <axel.lin@ingics.com>
-rw-r--r--server/red_tunnel_worker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/red_tunnel_worker.c b/server/red_tunnel_worker.c
index 97dcafd9..6781d73a 100644
--- a/server/red_tunnel_worker.c
+++ b/server/red_tunnel_worker.c
@@ -3417,7 +3417,7 @@ static void handle_tunnel_channel_link(RedChannel *channel, RedClient *client,
}
tcc = (TunnelChannelClient*)red_channel_client_create(sizeof(TunnelChannelClient),
- channel, client, stream,
+ channel, client, stream, FALSE,
0, NULL, 0, NULL);
if (!tcc) {
return;