summaryrefslogtreecommitdiff
path: root/ext/openssl/openssl.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-08-31 20:45:51 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-08-31 20:45:51 +0000
commit9c82b1fa753a88fccc2699864b4d62b2975d0b92 (patch)
tree5c4130a1053eae1e4cefd4bda7bc942f51efe135 /ext/openssl/openssl.c
parentceff58fb5e0399791c5baaea821a7ec76df2847b (diff)
downloadphp-git-9c82b1fa753a88fccc2699864b4d62b2975d0b92.tar.gz
Fixed compiler warnings.
Diffstat (limited to 'ext/openssl/openssl.c')
-rw-r--r--ext/openssl/openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c
index 2618379674..b01e78aea6 100644
--- a/ext/openssl/openssl.c
+++ b/ext/openssl/openssl.c
@@ -2298,7 +2298,7 @@ PHP_FUNCTION(openssl_pkcs7_encrypt)
cipher = EVP_des_ede3_cbc();
break;
default:
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid cipher type `%d'", cipherid);
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid cipher type `%ld'", cipherid);
goto clean_exit;
}
if (cipher == NULL) {