diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2008-10-06 01:18:54 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2008-10-06 01:18:54 +0000 |
commit | 5bb68042b808f434045106afb60db3da55cc57dc (patch) | |
tree | 0add8166dfcc1ad1b510dcd5d102c3984d75d106 /ext/imap/php_imap.c | |
parent | e68106988a6a3a3bd9736747d111ce388ef82423 (diff) | |
download | php-git-5bb68042b808f434045106afb60db3da55cc57dc.tar.gz |
Fixed a few signedness warnings
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 b1142b3dd6..931ee51dff 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -2753,7 +2753,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 @@ -2870,7 +2870,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 |