mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fixed NOTICE message
This commit is contained in:
parent
2ea0137d6c
commit
fd784655a2
1 changed files with 2 additions and 2 deletions
|
@ -2377,7 +2377,7 @@ PHP_FUNCTION(imap_utf7_decode)
|
|||
#if PHP_DEBUG
|
||||
/* warn if we computed outlen incorrectly */
|
||||
if (outp - out != outlen) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "outp - out [%d] != outlen [%d]", outp - out, outlen);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "outp - out [%ld] != outlen [%d]", outp - out, outlen);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -2496,7 +2496,7 @@ PHP_FUNCTION(imap_utf7_encode)
|
|||
#if PHP_DEBUG
|
||||
/* warn if we computed outlen incorrectly */
|
||||
if (outp - out != outlen) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "outp - out [%d] != outlen [%d]", outp - out, outlen);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "outp - out [%ld] != outlen [%d]", outp - out, outlen);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue