Mark m_option struct member as const.

This fixes many warnings similar to:
cfg-mplayer.h:368: warning: initialization discards qualifiers from pointer target type


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30989 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-04-03 11:06:57 +00:00
parent 0c6b8880ce
commit e7a1dbc122
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ struct m_option {
* use the priv field but this was inherited from older versions of the
* config code.
*/
void *p;
const void *p;
/// Option type.
const m_option_type_t* type;