summaryrefslogtreecommitdiff
path: root/UPGRADING.INTERNALS
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2020-01-23 12:57:48 +0100
committerGeorge Peter Banyard <girgias@php.net>2020-01-23 13:45:28 +0100
commit2b5fb76de6dd164064888ac5e95cc7d68ad38990 (patch)
tree13caeade366125beccba5610bbe10b64c950fe08 /UPGRADING.INTERNALS
parent28e650abf8097a28789a005e5028fee095359583 (diff)
downloadphp-git-2b5fb76de6dd164064888ac5e95cc7d68ad38990.tar.gz
Apply custom format/length modifier removal to spprintf
This mimicks the changes made to the custom snprintf implementation by removing the custom 'v' format and custom 'I' length modifier from the spprintf implementation. Closes GH-5108
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r--UPGRADING.INTERNALS6
1 files changed, 3 insertions, 3 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS
index 1714e26eb0..8e7cb66826 100644
--- a/UPGRADING.INTERNALS
+++ b/UPGRADING.INTERNALS
@@ -82,12 +82,12 @@ PHP 8.0 INTERNALS UPGRADE NOTES
compare handler, using ZEND_COMPARE_OBJECTS_FALLBACK() macro.
k. The 'I' length modifier, used to denote 32 and 64bit integer from the custom
- snprintf implementation has been removed.
+ snprintf and spprintf implementations has been removed.
Use the ZEND_LONG_FMT, ZEND_ULONG_FMT and ZEND_XLONG_FMT macros defined in
php-src/Zend/zend_long.h
- The 'v' format from the custom snprintf implementation has been removed.
- Use the standard 's' format instead.
+ The 'v' format from the custom snprintf and spprintf implementations has
+ been removed. Use the standard 's' format instead.
========================
2. Build system changes