From 99f5fef0ea5671d41fb7b737fbc3e4236542a757 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 10 Jun 2014 23:56:05 +0200 Subject: Add more const While I'm not very fond of "const", it's important for declarations (it decides whether a symbol is emitted in a read-only or read/write section). Fix all these cases, so we have writeable global data only when we really need. --- player/client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'player/client.c') diff --git a/player/client.c b/player/client.c index ed99f6f34e..ececec37f6 100644 --- a/player/client.c +++ b/player/client.c @@ -1169,7 +1169,7 @@ static bool match_property(const char *a, const char *b) } // Broadcast that properties have changed. -void mp_client_property_change(struct MPContext *mpctx, const char **list) +void mp_client_property_change(struct MPContext *mpctx, const char *const *list) { struct mp_client_api *clients = mpctx->clients; @@ -1340,7 +1340,7 @@ unsigned long mpv_client_api_version(void) return MPV_CLIENT_API_VERSION; } -static const char *err_table[] = { +static const char *const err_table[] = { [-MPV_ERROR_SUCCESS] = "success", [-MPV_ERROR_EVENT_QUEUE_FULL] = "event queue full", [-MPV_ERROR_NOMEM] = "memory allocation failed", @@ -1367,7 +1367,7 @@ const char *mpv_error_string(int error) return name ? name : "unknown error"; } -static const char *event_table[] = { +static const char *const event_table[] = { [MPV_EVENT_NONE] = "none", [MPV_EVENT_SHUTDOWN] = "shutdown", [MPV_EVENT_LOG_MESSAGE] = "log-message", -- cgit v1.2.3