summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2011-02-01 04:30:02 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2011-02-01 04:30:02 +0200
commit5db34ebd93f95b2238f936fd523ffc8c3d1eb3df (patch)
tree765702d032f67712c77a8987adfe985662f990db
parentebce4808fcc30422828a17d804c13ed9d9d85d34 (diff)
downloadmpv-5db34ebd93f95b2238f936fd523ffc8c3d1eb3df.tar.bz2
mpv-5db34ebd93f95b2238f936fd523ffc8c3d1eb3df.tar.xz
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.
-rw-r--r--mplayer.c4
1 files 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);
}