[Spice-devel] [spice-server v2] RedChannelClient: Mark some private data as bool
Christophe Fergeau
cfergeau at redhat.com
Thu Mar 9 17:43:01 UTC 2017
Some RedChannelClient data members were marked as int when they only
hold booleans.
Signed-off-by: Christophe Fergeau <cfergeau at redhat.com>
---
Changes since v1:
- use bool instead of gboolean
- changed one preexisting gboolean ('destroying')
server/red-channel-client.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/server/red-channel-client.c b/server/red-channel-client.c
index a86833d..2dc3b26 100644
--- a/server/red-channel-client.c
+++ b/server/red-channel-client.c
@@ -133,15 +133,15 @@ struct RedChannelClientPrivate
} urgent;
} send_data;
- int during_send;
+ bool during_send;
GQueue pipe;
RedChannelCapabilities remote_caps;
- int is_mini_header;
- gboolean destroying;
+ bool is_mini_header;
+ bool destroying;
- int wait_migrate_data;
- int wait_migrate_flush_mark;
+ bool wait_migrate_data;
+ bool wait_migrate_flush_mark;
RedChannelClientLatencyMonitor latency_monitor;
RedChannelClientConnectivityMonitor connectivity_monitor;
--
2.9.3
More information about the Spice-devel
mailing list