changeset 540:1bf090279174 multiprobeLSH

Fixed time-stamp option off-by-one error in new sparse scattered I/O. This probably isn't used by anyone at the moment and time-stamping needs to be tested properly anyway.
author mas01mc
date Sat, 07 Feb 2009 12:12:46 +0000
parents 06ed85832c3b
children 52d82badc544
files insert.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/insert.cpp	Sat Feb 07 01:20:05 2009 +0000
+++ b/insert.cpp	Sat Feb 07 12:12:46 2009 +0000
@@ -381,7 +381,7 @@
       goto error;
     }
     if(data_offset)
-      while(data_offset-- > 1)
+      while(data_offset--)
 	if(fscanf(file, " %lf", &t) != 1)
 	  goto error;
     tp = datum->times;