Add some missing "const"s

The one in msg.c was mistakenly removed with commit e99a37f6.

I didn't actually test the change in ao_sndio.c (but obviously "ap"
shouldn't be static).
This commit is contained in:
wm4
2014-10-10 13:44:08 +02:00
parent 7e4491a7a7
commit 26bc6b4831
9 changed files with 16 additions and 14 deletions

View File

@@ -160,8 +160,8 @@ void osd_get_function_sym(char *buffer, size_t buffer_size, int osd_function)
}
// Same trick as above: never valid UTF-8, so we expect it's free for use.
const char *osd_ass_0 = "\xFD";
const char *osd_ass_1 = "\xFE";
const char *const osd_ass_0 = "\xFD";
const char *const osd_ass_1 = "\xFE";
static void mangle_ass(bstr *dst, const char *in)
{