From 4e291ef76c2951fd9fc5686c101a04b725727af1 Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 29 Aug 2003 21:57:40 +0000 Subject: [PATCH] 1000l and I imho this would win 'The Bug/Typo of the Year' award git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10720 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libaf/af_surround.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libaf/af_surround.c b/libaf/af_surround.c index 8ec8e8058a..7a0f5532fd 100644 --- a/libaf/af_surround.c +++ b/libaf/af_surround.c @@ -137,7 +137,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg) sscanf((char*)arg,"%f",&d); if ((d < 0) || (d > 1000)){ af_msg(AF_MSG_ERROR,"[surround] Invalid delay time, valid time values" - " are 0ms to 1000ms current value is %0.3ms\n",d); + " are 0ms to 1000ms current value is %0.3f ms\n",d); return AF_ERROR; } s->d = d;