summaryrefslogtreecommitdiff
path: root/ext/mysqli/php_mysqli_structs.h
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2009-05-27 20:05:37 +0000
committerAndrey Hristov <andrey@php.net>2009-05-27 20:05:37 +0000
commitbf1a698e518ec928f6ce158ac0d2e3d604c61a96 (patch)
tree08b236e76a9acb34d164ebe78c819e5cbd93cb36 /ext/mysqli/php_mysqli_structs.h
parent91a4502914e9f182799dd6faf029bc404399dc6e (diff)
downloadphp-git-bf1a698e518ec928f6ce158ac0d2e3d604c61a96.tar.gz
MFH:
Less warnings by usage of proper modifier
Diffstat (limited to 'ext/mysqli/php_mysqli_structs.h')
-rw-r--r--ext/mysqli/php_mysqli_structs.h2
1 files changed, 1 insertions, 1 deletions
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); \
} \
}