[Spice-devel] [PATCH 1/3] Add const to test_capability first argument
Christophe Fergeau
cfergeau at redhat.com
Thu Mar 20 03:23:05 PDT 2014
We don't modify the capabilities content, so it can be marked as const.
---
server/red_channel.c | 2 +-
server/red_channel.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/server/red_channel.c b/server/red_channel.c
index 4f85365..617a0df 100644
--- a/server/red_channel.c
+++ b/server/red_channel.c
@@ -1172,7 +1172,7 @@ void red_channel_register_client_cbs(RedChannel *channel, ClientCbs *client_cbs)
}
}
-int test_capability(uint32_t *caps, int num_caps, uint32_t cap)
+int test_capability(const uint32_t *caps, int num_caps, uint32_t cap)
{
uint32_t index = cap / 32;
if (num_caps < index + 1) {
diff --git a/server/red_channel.h b/server/red_channel.h
index f9cfb95..24d29fe 100644
--- a/server/red_channel.h
+++ b/server/red_channel.h
@@ -223,7 +223,7 @@ typedef struct RedChannelCapabilities {
uint32_t *caps;
} RedChannelCapabilities;
-int test_capability(uint32_t *caps, int num_caps, uint32_t cap);
+int test_capability(const uint32_t *caps, int num_caps, uint32_t cap);
typedef struct RedChannelClientLatencyMonitor {
int state;
--
1.8.5.3
More information about the Spice-devel
mailing list