From 57b719b9914d65b43f7fcd6c39c64ec626016f47 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Sun, 7 Nov 2010 12:43:46 +0200 Subject: [PATCH] server/red_channel: two 80 column fixes --- server/red_channel.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/server/red_channel.c b/server/red_channel.c index 717da02c..b5ee32d3 100644 --- a/server/red_channel.c +++ b/server/red_channel.c @@ -115,8 +115,9 @@ static void red_peer_handle_incoming(RedsStreamContext *peer, IncomingHandler *h } if (handler->parser) { - parsed = handler->parser(handler->msg, handler->msg + handler->header.size, handler->header.type, - SPICE_VERSION_MINOR, &parsed_size, &parsed_free); + parsed = handler->parser(handler->msg, + handler->msg + handler->header.size, handler->header.type, + SPICE_VERSION_MINOR, &parsed_size, &parsed_free); if (parsed == NULL) { red_printf("failed to parse message type %d", handler->header.type); handler->on_error(handler->opaque); @@ -341,8 +342,9 @@ RedChannel *red_channel_create_parser(int size, RedsStreamContext *peer, channel_on_outgoing_error_proc outgoing_error) { RedChannel *channel = red_channel_create(size, peer, - core, migrate, handle_acks, config_socket, do_nothing_disconnect, do_nothing_handle_message, - alloc_recv_buf, release_recv_buf, hold_item, send_item, release_item); + core, migrate, handle_acks, config_socket, do_nothing_disconnect, + do_nothing_handle_message, alloc_recv_buf, release_recv_buf, hold_item, + send_item, release_item); if (channel == NULL) { return NULL;