summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-03-21 13:09:41 +0100
committerwm4 <wm4@nowhere>2020-03-21 13:09:41 +0100
commit2a85e8a1864ebe1d7749dfd2748931d1f320e337 (patch)
treefdfab45509daa99894e05eb2ddbd189839a6b580 /player
parenta5af126f918b86958a34a6eddc86f744978323ef (diff)
downloadmpv-2a85e8a1864ebe1d7749dfd2748931d1f320e337.tar.bz2
mpv-2a85e8a1864ebe1d7749dfd2748931d1f320e337.tar.xz
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.
Diffstat (limited to 'player')
-rw-r--r--player/main.c2
1 files changed, 1 insertions, 1 deletions
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;