# HG changeset patch # User aurel # Date 1219583561 0 # Node ID beb15b4fd4c4df444b72f6f4634eeacc7b11ac66 # Parent 3a874c41adaf48be588d1bb12a95b5f3f75f157c matroskadec: make aac_profiles array const diff -r 3a874c41adaf -r beb15b4fd4c4 matroskadec.c --- a/matroskadec.c Sun Aug 24 12:45:15 2008 +0000 +++ b/matroskadec.c Sun Aug 24 13:12:41 2008 +0000 @@ -1004,7 +1004,7 @@ static int matroska_aac_profile(char *codec_id) { - static const char *aac_profiles[] = { "MAIN", "LC", "SSR" }; + static const char * const aac_profiles[] = { "MAIN", "LC", "SSR" }; int profile; for (profile=0; profile