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/scripting.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player/scripting.c') diff --git a/player/scripting.c b/player/scripting.c index 5f072be1ca..7b3d408030 100644 --- a/player/scripting.c +++ b/player/scripting.c @@ -36,7 +36,7 @@ extern const struct mp_scripting mp_scripting_lua; -static const struct mp_scripting *scripting_backends[] = { +static const struct mp_scripting *const scripting_backends[] = { #if HAVE_LUA &mp_scripting_lua, #endif -- cgit v1.2.3