diff options
author | Mikael Ronstrom <mikael@dator8> | 2011-03-04 13:12:31 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@dator8> | 2011-03-04 13:12:31 +0100 |
commit | b14adc3921d3f2e30f858a31ae73ecdc65901e54 (patch) | |
tree | a7f5ebaca17d2031a07efaa3418357b9b756de46 /include/mysql/plugin_audit.h.pp | |
parent | 5f24be65270c844ba705de9121a95b3bb048dcc3 (diff) | |
download | mariadb-git-b14adc3921d3f2e30f858a31ae73ecdc65901e54.tar.gz |
More review fixes
Diffstat (limited to 'include/mysql/plugin_audit.h.pp')
-rw-r--r-- | include/mysql/plugin_audit.h.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mysql/plugin_audit.h.pp b/include/mysql/plugin_audit.h.pp index f74078c531f..732503e176a 100644 --- a/include/mysql/plugin_audit.h.pp +++ b/include/mysql/plugin_audit.h.pp @@ -46,10 +46,10 @@ typedef enum _thd_wait_type_e { THD_WAIT_LAST= 11 } thd_wait_type; extern struct thd_wait_service_st { - void (*thd_wait_begin_func)(void*, thd_wait_type); + void (*thd_wait_begin_func)(void*, int); void (*thd_wait_end_func)(void*); } *thd_wait_service; -void thd_wait_begin(void* thd, thd_wait_type wait_type); +void thd_wait_begin(void* thd, int wait_type); void thd_wait_end(void* thd); #include <mysql/service_thread_scheduler.h> struct scheduler_functions; |