diff options
author | Pierre Joye <pajoye@php.net> | 2010-11-15 23:53:13 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-11-15 23:53:13 +0000 |
commit | 87fd3737b4a6e64fcdcfa4c8d352a1b99f925302 (patch) | |
tree | 815a63752b406fc81a5962385f007c24a694e1fc /ext/mysqlnd/mysqlnd_debug.c | |
parent | 3cace9cbcc6e400a25604c47b6762f01a5b81622 (diff) | |
download | php-git-87fd3737b4a6e64fcdcfa4c8d352a1b99f925302.tar.gz |
-fix build
Diffstat (limited to 'ext/mysqlnd/mysqlnd_debug.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_debug.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/mysqlnd/mysqlnd_debug.c b/ext/mysqlnd/mysqlnd_debug.c index c45a63f569..d54ae01098 100644 --- a/ext/mysqlnd/mysqlnd_debug.c +++ b/ext/mysqlnd/mysqlnd_debug.c @@ -497,20 +497,20 @@ MYSQLND_METHOD(mysqlnd_debug, close)(MYSQLND_DEBUG * self) " min_in_calls=%5llu max_in_calls=%7llu avg_in_calls=%7llu" " min_total=%5llu max_total=%7llu avg_total=%7llu" ,string_key - ,(unsigned long long) f_profile->calls - ,(unsigned long long) f_profile->own_underporm_calls - ,(unsigned long long) f_profile->in_calls_underporm_calls - ,(unsigned long long) f_profile->total_underporm_calls + ,(uint64_t) f_profile->calls + ,(uint64_t) f_profile->own_underporm_calls + ,(uint64_t) f_profile->in_calls_underporm_calls + ,(uint64_t) f_profile->total_underporm_calls - ,(unsigned long long) f_profile->min_own - ,(unsigned long long) f_profile->max_own - ,(unsigned long long) f_profile->avg_own - ,(unsigned long long) f_profile->min_in_calls - ,(unsigned long long) f_profile->max_in_calls - ,(unsigned long long) f_profile->avg_in_calls - ,(unsigned long long) f_profile->min_total - ,(unsigned long long) f_profile->max_total - ,(unsigned long long) f_profile->avg_total + ,(uint64_t) f_profile->min_own + ,(uint64_t) f_profile->max_own + ,(uint64_t) f_profile->avg_own + ,(uint64_t) f_profile->min_in_calls + ,(uint64_t) f_profile->max_in_calls + ,(uint64_t) f_profile->avg_in_calls + ,(uint64_t) f_profile->min_total + ,(uint64_t) f_profile->max_total + ,(uint64_t) f_profile->avg_total ); zend_hash_move_forward_ex(&self->function_profiles, &pos_values); } |