Mercurial > mplayer.hg
changeset 14530:ea8a371b7d8d
print the actual commandline to stdout, too
author | faust3 |
---|---|
date | Mon, 17 Jan 2005 21:28:29 +0000 |
parents | cc9c088305d9 |
children | 0ffa29b63757 |
files | mplayer.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mplayer.c Mon Jan 17 21:19:59 2005 +0000 +++ b/mplayer.c Mon Jan 17 21:28:29 2005 +0000 @@ -1257,8 +1257,8 @@ // Many users forget to include command line in bugreports... if(verbose>0){ mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CommandLine); - for(i=1;i<argc;i++)mp_msg(MSGT_FIXME, MSGL_FIXME," '%s'",argv[i]); - mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); + for(i=1;i<argc;i++)mp_msg(MSGT_CPLAYER, MSGL_INFO," '%s'",argv[i]); + mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n"); } mp_msg_set_level(verbose+MSGL_STATUS);