From 0168fc5ddae5617e01b37f841d68bddb56bcb746 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Wed, 27 May 2009 20:04:49 +0000 Subject: [PATCH] Less warnings by usage of proper modifier --- ext/mysqli/php_mysqli_structs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/mysqli/php_mysqli_structs.h b/ext/mysqli/php_mysqli_structs.h index c42794face..3367010fa7 100644 --- a/ext/mysqli/php_mysqli_structs.h +++ b/ext/mysqli/php_mysqli_structs.h @@ -308,7 +308,7 @@ PHP_MYSQLI_EXPORT(zend_object_value) mysqli_objects_new(zend_class_entry * TSRML } else { \ char *ret; \ /* always used with my_ulonglong -> %llu */ \ - int l = spprintf(&ret, 0, "%llu", (__val)); \ + int l = spprintf(&ret, 0, MYSQLI_LLU_SPEC, (__val)); \ RETURN_STRINGL(ret, l, 0); \ } \ } @@ -455,7 +455,7 @@ PHP_FUNCTION(mysqli_next_result); PHP_FUNCTION(mysqli_num_fields); PHP_FUNCTION(mysqli_num_rows); PHP_FUNCTION(mysqli_options); -PHP_FUNCTION(mysqli_ping); +PHP_FUNCTION(mysqli_ping); PHP_FUNCTION(mysqli_poll); PHP_FUNCTION(mysqli_prepare); PHP_FUNCTION(mysqli_query); -- 2.50.1