summaryrefslogtreecommitdiffstats
path: root/m_option.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-04-04 15:57:17 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-04-04 15:57:17 +0000
commitf8a9b4e17ae1e3ed0008ca6af515139ae8449c68 (patch)
treef479d8b84bf6b53556c0e133147fe5861f44beba /m_option.h
parent22f6170009bb4442a9e0c2c2e44954df50a64d58 (diff)
downloadmpv-f8a9b4e17ae1e3ed0008ca6af515139ae8449c68.tar.bz2
mpv-f8a9b4e17ae1e3ed0008ca6af515139ae8449c68.tar.xz
Revert marking m_option struct member as const.
It is used for non-const things, so the original change was wrong. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30996 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'm_option.h')
-rw-r--r--m_option.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/m_option.h b/m_option.h
index 7f1d4c95bf..a70d8638d2 100644
--- a/m_option.h
+++ b/m_option.h
@@ -280,7 +280,7 @@ struct m_option {
* use the priv field but this was inherited from older versions of the
* config code.
*/
- const void *p;
+ void *p;
/// Option type.
const m_option_type_t* type;