Fix a small harmless typo in timing.cc.

This commit is contained in:
david 2009-02-11 16:27:26 +00:00
parent d0120217ad
commit 6ad92e7983

View file

@ -442,7 +442,7 @@ ScanProgressMeter::ScanProgressMeter(const char *stypestr) {
gettimeofday(&begin, NULL);
last_print_test = begin;
memset(&last_print, 0, sizeof(last_print));
memset(&last_est, 0, sizeof(last_print));
memset(&last_est, 0, sizeof(last_est));
beginOrEndTask(&begin, NULL, true);
}