pajoye                                   Mon, 15 Nov 2010 23:53:13 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=305391

Log:
-fix build

Changed paths:
    U   php/php-src/trunk/ext/mysqlnd/mysqlnd_debug.c

Modified: php/php-src/trunk/ext/mysqlnd/mysqlnd_debug.c
===================================================================
--- php/php-src/trunk/ext/mysqlnd/mysqlnd_debug.c       2010-11-15 23:46:43 UTC 
(rev 305390)
+++ php/php-src/trunk/ext/mysqlnd/mysqlnd_debug.c       2010-11-15 23:53:13 UTC 
(rev 305391)
@@ -497,20 +497,20 @@
                                                "   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);
                        }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to