> > From: Marc-André Lureau <marcandre.lureau@xxxxxxxxx> > > cursor_channel_new() is only called from one location, and always passes > FALSE as the value for the 'migrate' paramater. In addition, this > parameter is not used within the function. Remove it. > > Signed-off-by: Jonathon Jongsma <jjongsma@xxxxxxxxxx> > --- > server/cursor-channel.c | 2 +- > server/cursor-channel.h | 2 +- > server/red_worker.c | 2 +- > 3 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/server/cursor-channel.c b/server/cursor-channel.c > index 219c1da..2ea00c8 100644 > --- a/server/cursor-channel.c > +++ b/server/cursor-channel.c > @@ -362,7 +362,7 @@ static void cursor_channel_release_item(RedChannelClient > *rcc, PipeItem *item, i > } > } > > -CursorChannel* cursor_channel_new(RedWorker *worker, int migrate) > +CursorChannel* cursor_channel_new(RedWorker *worker) > { > CursorChannel* cursor; > > diff --git a/server/cursor-channel.h b/server/cursor-channel.h > index c7eee81..213f124 100644 > --- a/server/cursor-channel.h > +++ b/server/cursor-channel.h > @@ -78,7 +78,7 @@ typedef struct CursorChannel { > > G_STATIC_ASSERT(sizeof(CursorItem) <= QXL_CURSUR_DEVICE_DATA_SIZE); > > -CursorChannel* cursor_channel_new (RedWorker *worker, int > migrate); > +CursorChannel* cursor_channel_new (RedWorker *worker); > void cursor_channel_disconnect (CursorChannel *cursor); > void cursor_channel_reset (CursorChannel *cursor); > void cursor_channel_process_cmd (CursorChannel *cursor, > RedCursorCmd *cursor_cmd, > diff --git a/server/red_worker.c b/server/red_worker.c > index 9f845e4..7b3eee2 100644 > --- a/server/red_worker.c > +++ b/server/red_worker.c > @@ -10629,7 +10629,7 @@ void handle_dev_cursor_channel_create(void *opaque, > void *payload) > > // TODO: handle seemless migration. Temp, setting migrate to FALSE > if (!worker->cursor_channel) { > - worker->cursor_channel = cursor_channel_new(worker, FALSE); > + worker->cursor_channel = cursor_channel_new(worker); > } > red_channel = &worker->cursor_channel->common.base; > send_data(worker->channel, &red_channel, sizeof(RedChannel *)); Acked Frediano _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/spice-devel