summaryrefslogtreecommitdiff
path: root/UPGRADING.INTERNALS
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2015-06-23 19:29:10 -0700
committerHannes Magnusson <bjori@php.net>2015-06-23 19:29:10 -0700
commitce01d7361edff89f1baf9ad79d7fdc683773f71b (patch)
tree33111a45c8d1f9e57dd20cfb025d149fe8c7700c /UPGRADING.INTERNALS
parentd90763d4c6978f9a713382c5f9f2b9193bdce258 (diff)
downloadphp-git-ce01d7361edff89f1baf9ad79d7fdc683773f71b.tar.gz
space
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r--UPGRADING.INTERNALS2
1 files changed, 1 insertions, 1 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS
index 60ae493434..9700af595b 100644
--- a/UPGRADING.INTERNALS
+++ b/UPGRADING.INTERNALS
@@ -79,7 +79,7 @@ changes. See: https://wiki.php.net/phpng-upgrading
g. sprintf() formats
New printf modifier 'p' was implemented to platform independently output zend_long,
- zend_ulong and php_size_t datatypes. That modifier can be used with'd', 'u', 'x' and 'o'
+ zend_ulong and php_size_t datatypes. That modifier can be used with 'd', 'u', 'x' and 'o'
printf format specs with spprintf, snprintf and the wrapping printf implementations.
%pu is sufficient for both zend_ulong and php_size_t. the code using %p spec to output
pointer address might need to be enclosed into #ifdef when it unlickily followed by 'd',