Skip to content
Snippets Groups Projects
Commit e55c44d7 authored by Ralph Giles's avatar Ralph Giles
Browse files

Remove a debug printf from parse_time.

svn path=/trunk/theora/; revision=17495
parent 527ea6d4
No related branches found
No related tags found
No related merge requests found
......@@ -1251,7 +1251,6 @@ static int parse_time(long *_sec,long *_usec,const char *_optarg){
}
else pos=_optarg;
secf=strtod(pos,&end);
printf("%G %G\n",secf,secf-floor(secf));
if(err||*end!='\0')return -1;
*_sec=secl+(long)floor(secf);
*_usec=(long)((secf-floor(secf))*1E6+0.5);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment