1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-28 11:20:56 +00:00

m_option: make defval const

There's really no reason why it shouldn't.
This commit is contained in:
wm4 2013-08-17 19:50:45 +02:00
parent 8b245c4d4b
commit c890b8942d

View File

@ -318,7 +318,7 @@ struct m_option {
int offset;
// Initialize variable to given default before parsing options
void *defval;
const void *defval;
};