diff options
author | Andrey Hristov <andrey@php.net> | 2007-10-23 10:10:18 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2007-10-23 10:10:18 +0000 |
commit | 8b8cd15428b5db4aedd81d4133b1aa646ccf527a (patch) | |
tree | 5352a4531692cc1169bd741d218a2b4f6c278827 /ext/mysqlnd/mysqlnd_debug.h | |
parent | b599e434add080240f9628dd5bb543ffbeaeff3e (diff) | |
download | php-git-8b8cd15428b5db4aedd81d4133b1aa646ccf527a.tar.gz |
Fix build failure on Windows. Seems "free" can't be used even as method name of a structure. The MS compiler (the preprocessor most probably) changes it to _free_dbg
Diffstat (limited to 'ext/mysqlnd/mysqlnd_debug.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_debug.h b/ext/mysqlnd/mysqlnd_debug.h index 120d74aaa5..43bb634c93 100644 --- a/ext/mysqlnd/mysqlnd_debug.h +++ b/ext/mysqlnd/mysqlnd_debug.h @@ -39,7 +39,7 @@ struct st_mysqlnd_debug_methods char * func_name, uint func_name_len); enum_func_status (*func_leave)(MYSQLND_DEBUG *self, unsigned int line, const char * const file); enum_func_status (*close)(MYSQLND_DEBUG *self); - enum_func_status (*free)(MYSQLND_DEBUG *self); + enum_func_status (*free_handle)(MYSQLND_DEBUG *self); }; struct st_mysqlnd_debug |