1
mirror of https://github.com/mpv-player/mpv synced 2024-11-18 21:16:10 +01:00

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
This commit is contained in:
alex 2003-08-29 21:57:40 +00:00
parent c81e374ce1
commit 4e291ef76c

View File

@ -137,7 +137,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
sscanf((char*)arg,"%f",&d); sscanf((char*)arg,"%f",&d);
if ((d < 0) || (d > 1000)){ if ((d < 0) || (d > 1000)){
af_msg(AF_MSG_ERROR,"[surround] Invalid delay time, valid time values" 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; return AF_ERROR;
} }
s->d = d; s->d = d;