Fix error messages in timer implementation.

There were some references to the progress indicator, where this
implementation originally appeared.

Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
This commit is contained in:
Johannes Sixt
2007-11-21 09:21:12 +01:00
parent c2849fc4b1
commit a6ed49cf52

View File

@@ -760,10 +760,10 @@ static int start_timer_thread(void)
timer_thread = (HANDLE) _beginthreadex(NULL, 0, ticktack, NULL, 0, NULL);
if (!timer_thread )
return errno = ENOMEM,
error("cannot create progress indicator");
error("cannot start timer thread");
} else
return errno = ENOMEM,
error("cannot allocate resources for progress indicator");
error("cannot allocate resources timer");
return 0;
}