summaryrefslogtreecommitdiff
path: root/include/thr_alarm.h
diff options
context:
space:
mode:
authorunknown <guilhem@mysqlwin32.>2008-02-19 11:41:12 +0100
committerunknown <guilhem@mysqlwin32.>2008-02-19 11:41:12 +0100
commit8665ae2c1fa97866978ebec938479c796c1de6d7 (patch)
treef3bc4002ff3e1834359d8b0b1ea929a4d86e077d /include/thr_alarm.h
parenta680bc76880603d1f27aab9c44b2abe8a3a86526 (diff)
downloadmariadb-git-8665ae2c1fa97866978ebec938479c796c1de6d7.tar.gz
Fix for build failures. Putting back "#define bool BOOL" under Windows
until Windows team confers. client/get_password.c: fix for build failure (HPUX etc): no bool in C dbug/dbug.c: typo include/config-win.h: putting back the infamous #define, because without it we have 650 distinct compiler warnings "forcing value to bool 'true' or 'false'" (C4800), Windows team will confer on what to do. include/thr_alarm.h: fix for build failure on Windows libmysql/dll.c: fix for build failure on Windows mysys/thr_alarm.c: fix for build failure on HPUX
Diffstat (limited to 'include/thr_alarm.h')
-rw-r--r--include/thr_alarm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/thr_alarm.h b/include/thr_alarm.h
index a2694ba105b..fb906039269 100644
--- a/include/thr_alarm.h
+++ b/include/thr_alarm.h
@@ -98,7 +98,7 @@ void thr_end_alarm(thr_alarm_t *alarmed);
void end_thr_alarm(my_bool free_structures);
sig_handler process_alarm(int);
#ifndef thr_got_alarm
-bool thr_got_alarm(thr_alarm_t *alrm);
+my_bool thr_got_alarm(thr_alarm_t *alrm);
#endif