Mercurial > mplayer.hg
changeset 15791:8f34f3636322
Fix mp_msg vs af_msg usage as pointed out by Ivo.
author | diego |
---|---|
date | Tue, 21 Jun 2005 01:00:35 +0000 |
parents | 3d77e868023d |
children | e0a83c05183c |
files | libaf/af.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libaf/af.c Mon Jun 20 23:50:42 2005 +0000 +++ b/libaf/af.c Tue Jun 21 01:00:35 2005 +0000 @@ -691,7 +691,7 @@ 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);