diff options
author | reynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-07-15 16:03:12 +0000 |
---|---|---|
committer | reynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-07-15 16:03:12 +0000 |
commit | 58ed2c3fe035313bfc7feca7fd18abb84fa4fad1 (patch) | |
tree | 75a071a62db73e1bfb50be8ae3caa0a8054f2ea2 /Gui/win32 | |
parent | 9dd64b49e89cefd2158e8a5bb25798bd72ac2575 (diff) |
marks several read-only string parameters which aren't modified inside the called function as const. Patch by Stefan Huehner, stefan AT huehner-org
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19109 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/win32')
-rw-r--r-- | Gui/win32/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gui/win32/interface.c b/Gui/win32/interface.c index f7d148f954..d622d6c105 100644 --- a/Gui/win32/interface.c +++ b/Gui/win32/interface.c @@ -45,7 +45,7 @@ extern m_obj_settings_t* vo_plugin_args; extern vo_functions_t *video_out; extern ao_functions_t *audio_out; -extern void exit_player(char *how); +extern void exit_player(const char *how); extern char *filename; extern int abs_seek_pos; extern float rel_seek_secs; |