summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-02-27 22:30:14 +0100
committerwm4 <wm4@nowhere>2020-02-27 22:30:46 +0100
commit1e57f457b040fada62daeb67b96098c9e881bb59 (patch)
tree0fd0b878fb16be57668b270b5d2389d8f2ed9184 /player
parent05564af1ac22fcea080c6f8bb993744a1a4cadd6 (diff)
downloadmpv-1e57f457b040fada62daeb67b96098c9e881bb59.tar.bz2
mpv-1e57f457b040fada62daeb67b96098c9e881bb59.tar.xz
command: remove unintended newline
This just made it print a blank line.
Diffstat (limited to 'player')
-rw-r--r--player/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/command.c b/player/command.c
index a66c7bdf2f..8494903187 100644
--- a/player/command.c
+++ b/player/command.c
@@ -5092,7 +5092,7 @@ static void cmd_rescan_external_files(void *p)
if (s && s->is_external)
mp_switch_track(mpctx, STREAM_SUB, s, 0);
- print_track_list(mpctx, "Track list:\n");
+ print_track_list(mpctx, "Track list:");
}
}