From bf1a698e518ec928f6ce158ac0d2e3d604c61a96 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Wed, 27 May 2009 20:05:37 +0000 Subject: [PATCH] MFH: Less warnings by usage of proper modifier --- ext/mysqli/php_mysqli_structs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mysqli/php_mysqli_structs.h b/ext/mysqli/php_mysqli_structs.h index 72de483c37..ce02059488 100644 --- a/ext/mysqli/php_mysqli_structs.h +++ b/ext/mysqli/php_mysqli_structs.h @@ -296,7 +296,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); \ } \ } -- 2.40.0