Fix mp_msg vs af_msg usage as pointed out by Ivo.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15792 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2005-06-21 01:00:35 +00:00
parent 6a166ddf6a
commit 8475733dc2
1 changed files with 1 additions and 1 deletions

View File

@ -691,7 +691,7 @@ void af_help (void) {
int i = 0;
af_msg(AF_MSG_INFO, "Available audio filters:\n");
if (identify)
mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_FILTERS\n");
af_msg(AF_MSG_INFO, "ID_AUDIO_FILTERS\n");
while (filter_list[i]) {
if (filter_list[i]->comment && filter_list[i]->comment[0])
af_msg(AF_MSG_INFO, " %-15s: %s (%s)\n", filter_list[i]->name, filter_list[i]->info, filter_list[i]->comment);