[xiph-commits] r17699 - trunk/squishyball

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Wed Dec 1 11:18:25 PST 2010


Author: xiphmont
Date: 2010-12-01 11:18:23 -0800 (Wed, 01 Dec 2010)
New Revision: 17699

Modified:
   trunk/squishyball/tty.c
Log:
retry--- not all of that previous commit made it through



Modified: trunk/squishyball/tty.c
===================================================================
--- trunk/squishyball/tty.c	2010-12-01 19:11:50 UTC (rev 17698)
+++ trunk/squishyball/tty.c	2010-12-01 19:18:23 UTC (rev 17699)
@@ -43,7 +43,7 @@
 
 static char timebuffer[80];
 char *make_time_string(double is,int pad){
-  double s = rint(is*100)/100.;
+  double s = rint(is*100)/100.+1.e-6;
   long hrs=s/60/60;
   long min=s/60-hrs*60;
   long sec=s-hrs*60*60-min*60;



More information about the commits mailing list