0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-19 19:42:24 +02:00

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.
This commit is contained in:
wm4 2020-03-21 13:09:41 +01:00
parent a5af126f91
commit 2a85e8a186

View File

@ -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;