mirror of
https://github.com/git/git.git
synced 2026-03-13 18:33:25 +01:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user