summaryrefslogtreecommitdiffstats
path: root/libaf/af.c
diff options
context:
space:
mode:
authoranders <anders@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-06 11:45:49 +0000
committeranders <anders@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-06 11:45:49 +0000
commitaf069ffbda9818180b212d8f545b9d5958159a2d (patch)
treea16f57410369423b10f6802d1e07b5fc796119f5 /libaf/af.c
parentfe053df38da17eaa26caa9f753baa69aa68bdf55 (diff)
downloadmpv-af069ffbda9818180b212d8f545b9d5958159a2d.tar.bz2
mpv-af069ffbda9818180b212d8f545b9d5958159a2d.tar.xz
Removing annoying printf
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7618 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf/af.c')
-rw-r--r--libaf/af.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libaf/af.c b/libaf/af.c
index f6a22e3afa..393f6e3cb1 100644
--- a/libaf/af.c
+++ b/libaf/af.c
@@ -48,7 +48,6 @@ af_instance_t* af_get(af_stream_t* s, char* name)
af_instance_t* af=s->first;
// Find the filter
while(af != NULL){
- printf("%s\n",af->info->name);
if(!strcmp(af->info->name,name))
return af;
af=af->next;