comparison mencoder.c @ 18980:ed69754aa58d

Marks several string parameters as const when they are not modified in the function, Patch by Stefan Huehner, stefan AT huehner-org
author reynaldo
date Sun, 09 Jul 2006 17:45:36 +0000
parents 9e95ac641e77
children a2f20562aac3
comparison
equal deleted inserted replaced
18979:494e8de479aa 18980:ed69754aa58d
297 #endif 297 #endif
298 #include "vobsub.h" 298 #include "vobsub.h"
299 299
300 #include "libao2/audio_out.h" 300 #include "libao2/audio_out.h"
301 /* FIXME */ 301 /* FIXME */
302 static void mencoder_exit(int level, char *how) 302 static void mencoder_exit(int level, const char *how)
303 { 303 {
304 if (how) 304 if (how)
305 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_ExitingHow, how); 305 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_ExitingHow, how);
306 else 306 else
307 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_Exiting); 307 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_Exiting);