From a6ed49cf52589d26235dc2461ebaf8b38446b061 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Wed, 21 Nov 2007 09:21:12 +0100 Subject: [PATCH] Fix error messages in timer implementation. There were some references to the progress indicator, where this implementation originally appeared. Signed-off-by: Johannes Sixt --- compat/mingw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compat/mingw.c b/compat/mingw.c index 676aae573e..aa730e9bc1 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -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; }