diff options
author | Anatoliy Belsky <ab@php.net> | 2012-07-11 13:32:19 +0200 |
---|---|---|
committer | Anatoliy Belsky <ab@php.net> | 2012-07-11 13:32:19 +0200 |
commit | 6071bfb325e4facd697c38e4d398d008dd1dc37a (patch) | |
tree | 32c9c897ecfdce62546b28d2e65915a8f1d970de /ext/mysqlnd/mysqlnd_debug.h | |
parent | bf0154896705afe0da6ee1c7af4dc3d75afd194b (diff) | |
download | php-git-6071bfb325e4facd697c38e4d398d008dd1dc37a.tar.gz |
fix windows build
- there should be no trailing white spaces after \ in multiline macros
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 3441dc74e1..272cdb20e5 100644 --- a/ext/mysqlnd/mysqlnd_debug.h +++ b/ext/mysqlnd/mysqlnd_debug.h @@ -126,7 +126,7 @@ PHPAPI char * mysqlnd_get_backtrace(uint max_levels, size_t * length TSRMLS_DC); if ((dbg_obj2)) { \ dbg_skip_trace = !(dbg_obj2)->m->func_enter((dbg_obj2), __LINE__, __FILE__, func_name, strlen(func_name)); \ } \ - if (dbg_skip_trace); /* shut compiler's mouth */\ + if (dbg_skip_trace); /* shut compiler's mouth */\ do { \ if (((dbg_obj1) && (dbg_obj1)->flags & MYSQLND_DEBUG_PROFILE_CALLS) || \ ((dbg_obj2) && (dbg_obj2)->flags & MYSQLND_DEBUG_PROFILE_CALLS)) \ |