diff options
author | Sergei Golubchik <serg@mysql.com> | 2009-01-19 16:27:49 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mysql.com> | 2009-01-19 16:27:49 +0100 |
commit | 9aa2ada9d007a41d4e58447ea405b646c4d53ea3 (patch) | |
tree | 9bac23eb9d017de4e01e052cef0352cccd8161db /mysys/waiting_threads.c | |
parent | e3da48ba691f58785e0166c75f8b6fcaabe9c85d (diff) | |
download | mariadb-git-9aa2ada9d007a41d4e58447ea405b646c4d53ea3.tar.gz |
compilation fixes
Diffstat (limited to 'mysys/waiting_threads.c')
-rw-r--r-- | mysys/waiting_threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/waiting_threads.c b/mysys/waiting_threads.c index 5b99a5ceeba..732929f6d99 100644 --- a/mysys/waiting_threads.c +++ b/mysys/waiting_threads.c @@ -545,7 +545,7 @@ void wt_thd_destroy(WT_THD *thd) It can be used in WT_RESOURCE_TYPE structures where bytewise comparison of values is sufficient. */ -int wt_resource_id_memcmp(const void *a, const void *b) +my_bool wt_resource_id_memcmp(const void *a, const void *b) { /* we use the fact that there's no padding in the middle of WT_RESOURCE_ID */ compile_time_assert(offsetof(WT_RESOURCE_ID, type) == sizeof(ulonglong)); |