diff options
author | unknown <guilhem@gbichot4.local> | 2008-02-19 18:45:11 +0100 |
---|---|---|
committer | unknown <guilhem@gbichot4.local> | 2008-02-19 18:45:11 +0100 |
commit | 205d448b01b93e3aa10507e933337b51e885f9dd (patch) | |
tree | ad9d397d605c9c610e9016051ee4cc0e7fad479e /mysys/thr_alarm.c | |
parent | ae25da10a371db0d530ccc2225a730ebc38f8db1 (diff) | |
download | mariadb-git-205d448b01b93e3aa10507e933337b51e885f9dd.tar.gz |
fixes for build failures due to my yesterday's changeset forbidding
bool in C.
client/get_password.c:
fix for build failure
include/thr_alarm.h:
fix for build failure
libmysql/dll.c:
fix for build failure
libmysql/get_password.c:
fix for build failure
mysys/thr_alarm.c:
fix for build failure
Diffstat (limited to 'mysys/thr_alarm.c')
-rw-r--r-- | mysys/thr_alarm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/thr_alarm.c b/mysys/thr_alarm.c index afa5aadece7..b710a7eee39 100644 --- a/mysys/thr_alarm.c +++ b/mysys/thr_alarm.c @@ -632,7 +632,7 @@ my_bool thr_alarm(thr_alarm_t *alrm, uint sec, ALARM *alarm) } -bool thr_got_alarm(thr_alarm_t *alrm_ptr) +my_bool thr_got_alarm(thr_alarm_t *alrm_ptr) { thr_alarm_t alrm= *alrm_ptr; MSG msg; |