summaryrefslogtreecommitdiff
path: root/gtk/channel-base.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2010-11-25 21:29:24 +0100
committerMarc-André Lureau <marcandre.lureau@redhat.com>2010-11-25 21:29:24 +0100
commit0843bfad57f5e51008dfdcfd3136a83dbe7321fb (patch)
tree1f23a1f58aac8ccd5eb0a84a80cf09beea8494fe /gtk/channel-base.c
parent27b06760f3a381acba9f840bab1a3ea2efc7ffde (diff)
build: re-enable -Wflags, and fix a few warnings
Diffstat (limited to 'gtk/channel-base.c')
-rw-r--r--gtk/channel-base.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/gtk/channel-base.c b/gtk/channel-base.c
index d0d2785..e678d6e 100644
--- a/gtk/channel-base.c
+++ b/gtk/channel-base.c
@@ -77,7 +77,6 @@ void spice_channel_handle_notify(SpiceChannel *channel, spice_msg_in *in)
void spice_channel_handle_disconnect(SpiceChannel *channel, spice_msg_in *in)
{
- spice_channel *c = channel->priv;
SpiceMsgDisconnect *disconnect = spice_msg_in_parsed(in);
SPICE_DEBUG("%s: ts: %" PRIu64", reason: %u", __FUNCTION__,
@@ -86,16 +85,16 @@ void spice_channel_handle_disconnect(SpiceChannel *channel, spice_msg_in *in)
void spice_channel_handle_wait_for_channels(SpiceChannel *channel, spice_msg_in *in)
{
- spice_channel *c = channel->priv;
- SpiceMsgWaitForChannels *wfc = spice_msg_in_parsed(in);
+ /* spice_channel *c = channel->priv;
+ SpiceMsgWaitForChannels *wfc = spice_msg_in_parsed(in); */
SPICE_DEBUG("%s TODO", __FUNCTION__);
}
void spice_channel_handle_migrate(SpiceChannel *channel, spice_msg_in *in)
{
- spice_channel *c = channel->priv;
- SpiceMsgMigrate *mig = spice_msg_in_parsed(in);
+ /* spice_channel *c = channel->priv;
+ SpiceMsgMigrate *mig = spice_msg_in_parsed(in); */
SPICE_DEBUG("%s TODO", __FUNCTION__);
}