Remove debugging statements.

merge-requests/5/head
Ralph Little 2021-08-20 10:17:29 -07:00
rodzic 34a0ebb0b5
commit 85dcb55761
1 zmienionych plików z 0 dodań i 2 usunięć

Wyświetl plik

@ -127,7 +127,6 @@ progress_update (Progress_t * p, gfloat newval)
#ifdef HAVE_SYS_TIME_H
fprintf(stderr, "Hello!!!!!!!\n");
gettimeofday (&tv, NULL);
now = tv.tv_sec * 1000 + tv.tv_usec / 1000;
@ -140,7 +139,6 @@ progress_update (Progress_t * p, gfloat newval)
if (newval > p->firstVal && now - p->lastTime > 1000)
{
fprintf(stderr, "Hello2!!!!!!!\n");
remaining =
(int) ((now - p->firstTime) * (1.0 - newval) / (newval -
p->firstVal) /