summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-11-07 19:24:19 +0200
committerAlon Levy <alevy@redhat.com>2010-11-07 19:24:19 +0200
commit94a8dd90ca559882e5a5cb9746d224c1afff26c9 (patch)
treecd4ce1c2f9cd7c7dd3dc4e62526b5cb73f2e3060
parentfd49ef7f86ccfc3ecc3e333b117d21423d8f4910 (diff)
downloadspice-94a8dd90ca559882e5a5cb9746d224c1afff26c9.tar.gz
spice-94a8dd90ca559882e5a5cb9746d224c1afff26c9.tar.xz
spice-94a8dd90ca559882e5a5cb9746d224c1afff26c9.zip
server/red_channel: fix channel_hold_item_proc sig
-rw-r--r--server/red_channel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/red_channel.h b/server/red_channel.h
index 5f3e5bc4..e03f1ecb 100644
--- a/server/red_channel.h
+++ b/server/red_channel.h
@@ -110,7 +110,7 @@ typedef void (*channel_release_msg_recv_buf_proc)(RedChannel *channel,
typedef void (*channel_disconnect_proc)(RedChannel *channel);
typedef int (*channel_configure_socket_proc)(RedChannel *channel);
typedef void (*channel_send_pipe_item_proc)(RedChannel *channel, PipeItem *item);
-typedef void (*channel_hold_item_proc)(void *item);
+typedef void (*channel_hold_item_proc)(PipeItem *item);
typedef void (*channel_release_pipe_item_proc)(RedChannel *channel,
PipeItem *item, int item_pushed);
typedef void (*channel_on_incoming_error_proc)(RedChannel *channel);