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. --- demux/demux_playlist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'demux/demux_playlist.c') diff --git a/demux/demux_playlist.c b/demux/demux_playlist.c index af24d4906f..b2344b5583 100644 --- a/demux/demux_playlist.c +++ b/demux/demux_playlist.c @@ -154,11 +154,11 @@ static int parse_txt(struct pl_parser *p) struct pl_format { const char *name; int (*parse)(struct pl_parser *p); - const char **mime_types; + const char *const *mime_types; }; #define MIME_TYPES(...) \ - .mime_types = (const char*[]){__VA_ARGS__, NULL} + .mime_types = (const char*const[]){__VA_ARGS__, NULL} static const struct pl_format formats[] = { {"m3u", parse_m3u, @@ -170,7 +170,7 @@ static const struct pl_format formats[] = { {"txt", parse_txt}, }; -static bool check_mimetype(struct stream *s, const char **list) +static bool check_mimetype(struct stream *s, const char *const *list) { if (s->mime_type) { for (int n = 0; list && list[n]; n++) { -- cgit v1.2.3