summaryrefslogtreecommitdiffstats
path: root/server/red_channel.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2015-07-31 17:29:07 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2015-08-11 17:24:36 +0200
commit3da1e1ed0ce3fd0892637c96a958017db612a8f1 (patch)
tree4aa13e620121410aeeda66495e901290c9701059 /server/red_channel.c
parente3187ebd29ee689fa8679dc56433e0a391c395f2 (diff)
downloadspice-3da1e1ed0ce3fd0892637c96a958017db612a8f1.tar.gz
spice-3da1e1ed0ce3fd0892637c96a958017db612a8f1.tar.xz
spice-3da1e1ed0ce3fd0892637c96a958017db612a8f1.zip
server: use more const CoreInterface
Diffstat (limited to 'server/red_channel.c')
-rw-r--r--server/red_channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/red_channel.c b/server/red_channel.c
index 2a273e94..b08848e9 100644
--- a/server/red_channel.c
+++ b/server/red_channel.c
@@ -1022,7 +1022,7 @@ void red_channel_client_default_migrate(RedChannelClient *rcc)
}
RedChannel *red_channel_create(int size,
- SpiceCoreInterface *core,
+ const SpiceCoreInterface *core,
uint32_t type, uint32_t id,
int handle_acks,
channel_handle_message_proc handle_message,
@@ -1137,7 +1137,7 @@ static int do_nothing_handle_message(RedChannelClient *rcc,
}
RedChannel *red_channel_create_parser(int size,
- SpiceCoreInterface *core,
+ const SpiceCoreInterface *core,
uint32_t type, uint32_t id,
int handle_acks,
spice_parse_channel_func_t parser,