diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-07-06 00:13:56 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-07-06 00:13:56 +0000 |
commit | fd784655a2407ef4a0bb66c47291d730c5791a6c (patch) | |
tree | 0c5cd734269682b02a6b1e32103f12738ae0a040 /ext/imap/php_imap.c | |
parent | 2ea0137d6c6d47157537e9c8c829ced2f1440f6e (diff) | |
download | php-git-fd784655a2407ef4a0bb66c47291d730c5791a6c.tar.gz |
Fixed NOTICE message
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index aa3c26182e..3197ada50a 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -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 |