summaryrefslogtreecommitdiffstats
path: root/server/stream.c
diff options
context:
space:
mode:
authorJonathon Jongsma <jjongsma@redhat.com>2015-02-06 14:10:29 -0600
committerFabiano FidĂȘncio <fidencio@redhat.com>2015-02-23 23:00:46 +0100
commitc2556da161015a58cf82b17969e0beeaff287afe (patch)
treeba52a3dea45e1d6a9b5774bc6ad379ebae59d70c /server/stream.c
parent1c7cf80e55776fd1e4b60d972c309390660587dc (diff)
downloadspice-c2556da161015a58cf82b17969e0beeaff287afe.tar.gz
spice-c2556da161015a58cf82b17969e0beeaff287afe.tar.xz
spice-c2556da161015a58cf82b17969e0beeaff287afe.zip
CommonChannel -> CommonWorkerChannel
Rename this struct to make it clear that it's only the base class for worker channels (e.g. display and cursor), not all channels. Also renamed CommonChannelClient to CommonWorkerChannelClient.
Diffstat (limited to 'server/stream.c')
-rw-r--r--server/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/stream.c b/server/stream.c
index afcf722c..e1627762 100644
--- a/server/stream.c
+++ b/server/stream.c
@@ -427,7 +427,7 @@ static void display_channel_create_stream(DisplayChannel *display, Drawable *dra
GSource *source = g_timeout_source_new(RED_STREAM_INPUT_FPS_TIMEOUT);
g_source_set_callback(source, red_stream_input_fps_timer_cb, stream, NULL);
stream->input_fps_timer =
- g_source_attach(source, red_worker_get_context(COMMON_CHANNEL(display)->worker));
+ g_source_attach(source, red_worker_get_context(COMMON_WORKER_CHANNEL(display)->worker));
g_source_unref(source);
stream->num_input_frames = 0;