From e9183c74f2cbd5351adaf5f734b26b490a163d90 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 29 Aug 2003 22:13:57 -0400 Subject: [PATCH] Fix VC++ compiler error with redifinition return type include/thr_alarm.h: Fix VC++ compiler error with redefinition return type --- include/thr_alarm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/thr_alarm.h b/include/thr_alarm.h index 439f046252f..8ff4472f700 100644 --- a/include/thr_alarm.h +++ b/include/thr_alarm.h @@ -100,7 +100,7 @@ typedef struct st_alarm { #define thr_alarm_init(A) (*(A))=0 #define thr_alarm_in_use(A) (*(A)!= 0) void init_thr_alarm(uint max_alarm); -bool thr_alarm(thr_alarm_t *alarmed, uint sec, ALARM *buff); +my_bool thr_alarm(thr_alarm_t *alarmed, uint sec, ALARM *buff); void thr_alarm_kill(pthread_t thread_id); void thr_end_alarm(thr_alarm_t *alarmed); void end_thr_alarm(my_bool free_structures);