diff options
author | Frediano Ziglio <fziglio@redhat.com> | 2016-02-23 16:02:09 +0000 |
---|---|---|
committer | Frediano Ziglio <fziglio@redhat.com> | 2016-02-23 17:49:26 +0000 |
commit | b92588bf2c593c0cacf252a3325a443774514e61 (patch) | |
tree | fd59f6eb9bded6efc8a91d0f2106d230b0570050 /server/reds.c | |
parent | 39ab6b3279b252f0c2958ce9d7e0cbee1408d11e (diff) |
constify some global variables
Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
Diffstat (limited to 'server/reds.c')
-rw-r--r-- | server/reds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/reds.c b/server/reds.c index b917f26f..444d7acb 100644 --- a/server/reds.c +++ b/server/reds.c @@ -874,7 +874,7 @@ SPICE_GNUC_VISIBLE int spice_server_get_num_clients(SpiceServer *s) return reds_get_n_clients(reds); } -static int secondary_channels[] = { +static const int secondary_channels[] = { SPICE_CHANNEL_MAIN, SPICE_CHANNEL_DISPLAY, SPICE_CHANNEL_CURSOR, SPICE_CHANNEL_INPUTS}; static int channel_is_secondary(RedChannel *channel) @@ -3733,7 +3733,7 @@ SPICE_GNUC_VISIBLE int spice_server_set_zlib_glz_compression(SpiceServer *s, spi SPICE_GNUC_VISIBLE int spice_server_set_channel_security(SpiceServer *s, const char *channel, int security) { - static const char *names[] = { + static const char *const names[] = { [ SPICE_CHANNEL_MAIN ] = "main", [ SPICE_CHANNEL_DISPLAY ] = "display", [ SPICE_CHANNEL_INPUTS ] = "inputs", |