From 2a85e8a1864ebe1d7749dfd2748931d1f320e337 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 21 Mar 2020 13:09:41 +0100 Subject: player: remove additional newline before exit message What was this even for? Also, most times, the cleared status line will show up as an empty new line anyway, so this commit reduces the empty new lines from 2 to 1. --- player/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player/main.c b/player/main.c index f42d181806..f3d591ecae 100644 --- a/player/main.c +++ b/player/main.c @@ -452,7 +452,7 @@ int mpv_main(int argc, char *argv[]) } if (reason) - MP_INFO(mpctx, "\nExiting... (%s)\n", reason); + MP_INFO(mpctx, "Exiting... (%s)\n", reason); if (mpctx->has_quit_custom_rc) rc = mpctx->quit_custom_rc; -- cgit v1.2.3