summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mencoder.c2
-rw-r--r--mplayer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/mencoder.c b/mencoder.c
index a2a512e377..0b0da44c0d 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -290,7 +290,7 @@ static int edl_seek(edl_record_ptr next_edl_record, demuxer_t* demuxer, demux_st
static void mencoder_exit(int level, char *how)
{
if (how)
- mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_ExitingHow, mp_gettext(how));
+ mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_ExitingHow, how);
else
mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_Exiting);
diff --git a/mplayer.c b/mplayer.c
index a205ee26b8..672006bdd7 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -540,7 +540,7 @@ static void exit_player_with_rc(char* how, int rc){
#ifdef USE_EDL
if(edl_records != NULL) free(edl_records); // free mem allocated for EDL
#endif
- if(how) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,mp_gettext(how));
+ if(how) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,how);
mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize);
exit(rc);