mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
Less warnings by usage of proper modifier
This commit is contained in:
parent
0ebb041393
commit
0168fc5dda
1 changed files with 2 additions and 2 deletions
|
@ -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); \
|
||||
} \
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue