From 5db34ebd93f95b2238f936fd523ffc8c3d1eb3df Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Tue, 1 Feb 2011 04:30:02 +0200 Subject: terminal output: change infamous "Core dumped" message The "Core dumped ;)" message printed after finishing a stream dump is known to confuse users but was kept as "humor". Change it to say "Stream dump complete." instead. --- mplayer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mplayer.c b/mplayer.c index 097a9f4223..69ee1281f2 100644 --- a/mplayer.c +++ b/mplayer.c @@ -4420,7 +4420,7 @@ if(stream_dump_type==5){ mp_tmsg(MSGT_GLOBAL,MSGL_FATAL,"%s: Error writing file.\n",opts->stream_dump_name); exit_player(mpctx, EXIT_ERROR); } - mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Core dumped ;)\n"); + mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Stream dump complete.\n"); exit_player_with_rc(mpctx, EXIT_EOF, 0); } @@ -4615,7 +4615,7 @@ if((stream_dump_type)&&(stream_dump_type<4)){ } } fclose(f); - mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Core dumped ;)\n"); + mp_tmsg(MSGT_CPLAYER ,MSGL_INFO, "Stream dump complete.\n"); exit_player_with_rc(mpctx, EXIT_EOF, 0); } -- cgit v1.2.3