summaryrefslogtreecommitdiffstats
path: root/server/cursor-channel.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2015-10-29 16:54:47 -0500
committerFrediano Ziglio <fziglio@redhat.com>2015-10-30 08:48:00 +0000
commit7b39f818b8d4b02f83085d5006b47164b09f0c6e (patch)
treeac53ac5fed9769193cfad33d6c0fce8645e7732a /server/cursor-channel.c
parent30c9ff7a8fcbf3e6cb9a7c1f8030c5e8b40f2f0b (diff)
downloadspice-7b39f818b8d4b02f83085d5006b47164b09f0c6e.tar.gz
spice-7b39f818b8d4b02f83085d5006b47164b09f0c6e.tar.xz
spice-7b39f818b8d4b02f83085d5006b47164b09f0c6e.zip
Remove a couple single-use static functions
red_cursor_marshall_inval(), red_migrate_cursor() and on_new_cursor_channel() were short functions that were each only called from a single location, so there's no need for them to be separate functions. Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
Diffstat (limited to 'server/cursor-channel.c')
-rw-r--r--server/cursor-channel.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/server/cursor-channel.c b/server/cursor-channel.c
index b47eeaa6..7ab92857 100644
--- a/server/cursor-channel.c
+++ b/server/cursor-channel.c
@@ -289,13 +289,6 @@ static inline void red_marshall_inval(RedChannelClient *rcc,
spice_marshall_msg_cursor_inval_one(base_marshaller, &inval_one);
}
-static void red_cursor_marshall_inval(RedChannelClient *rcc,
- SpiceMarshaller *m, CacheItem *cach_item)
-{
- spice_assert(rcc);
- red_marshall_inval(rcc, m, cach_item);
-}
-
static void cursor_channel_send_item(RedChannelClient *rcc, PipeItem *pipe_item)
{
SpiceMarshaller *m = red_channel_client_get_marshaller(rcc);
@@ -306,7 +299,7 @@ static void cursor_channel_send_item(RedChannelClient *rcc, PipeItem *pipe_item)
cursor_marshall(rcc, m, SPICE_CONTAINEROF(pipe_item, CursorPipeItem, base));
break;
case PIPE_ITEM_TYPE_INVAL_ONE:
- red_cursor_marshall_inval(rcc, m, (CacheItem *)pipe_item);
+ red_marshall_inval(rcc, m, (CacheItem *)pipe_item);
break;
case PIPE_ITEM_TYPE_VERB:
red_marshall_verb(rcc, (VerbItem*)pipe_item);