andrey Wed May 27 20:05:37 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/mysqli php_mysqli_structs.h Log: MFH: Less warnings by usage of proper modifier http://cvs.php.net/viewvc.cgi/php-src/ext/mysqli/php_mysqli_structs.h?r1=1.4.2.19&r2=1.4.2.20&diff_format=u Index: php-src/ext/mysqli/php_mysqli_structs.h diff -u php-src/ext/mysqli/php_mysqli_structs.h:1.4.2.19 php-src/ext/mysqli/php_mysqli_structs.h:1.4.2.20 --- php-src/ext/mysqli/php_mysqli_structs.h:1.4.2.19 Wed May 27 19:57:11 2009 +++ php-src/ext/mysqli/php_mysqli_structs.h Wed May 27 20:05:37 2009 @@ -15,7 +15,7 @@ | Author: Georg Richter <ge...@php.net> | +----------------------------------------------------------------------+ - $Id: php_mysqli_structs.h,v 1.4.2.19 2009/05/27 19:57:11 andrey Exp $ + $Id: php_mysqli_structs.h,v 1.4.2.20 2009/05/27 20:05:37 andrey Exp $ */ #ifndef PHP_MYSQLI_STRUCTS_H @@ -296,7 +296,7 @@ } 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); \ } \ }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php