# HG changeset patch # User mas01mc # Date 1234008766 0 # Node ID 1bf090279174a78035fd0f1aecfe070f1b6a26b5 # Parent 06ed85832c3bb1c424a006e8bb8d1bcebb91a607 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. diff -r 06ed85832c3b -r 1bf090279174 insert.cpp --- 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;