From 2b5fb76de6dd164064888ac5e95cc7d68ad38990 Mon Sep 17 00:00:00 2001 From: George Peter Banyard Date: Thu, 23 Jan 2020 12:57:48 +0100 Subject: 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 --- UPGRADING.INTERNALS | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'UPGRADING.INTERNALS') 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 -- cgit v1.2.1