summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mplayer.c b/mplayer.c
index df7dd17d10..0c6008b100 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1181,11 +1181,11 @@ static void print_status(float a_pos, float a_v, float corr)
// end
if (erase_to_end_of_line) {
line[pos] = 0;
- mp_msg(MSGT_AVSYNC, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line);
+ mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line);
} else {
memset(&line[pos], ' ', width - pos);
line[width] = 0;
- mp_msg(MSGT_AVSYNC, MSGL_STATUS, "%s\r", line);
+ mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s\r", line);
}
free(line);
}