diff options
author | Christopher Jones <sixd@php.net> | 2013-08-19 17:58:42 -0700 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2013-08-19 17:58:42 -0700 |
commit | 1a00b9bd264ba2495930be05cd0ed2b1c13b8ef8 (patch) | |
tree | 754887cf26a7802c5dbd8501e8b41d90d448b53b | |
parent | 83469477e70cba8191a4698252fc83804e88322b (diff) | |
download | php-git-1a00b9bd264ba2495930be05cd0ed2b1c13b8ef8.tar.gz |
Remove compile warning:
warning: unused variable ājā [-Wunused-variable]
-rw-r--r-- | ext/openssl/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index f9493c73c0..4a9fcbc9e3 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -576,7 +576,7 @@ static void add_assoc_name_entry(zval * val, char * key, X509_NAME * name, int s { zval **data; zval *subitem, *subentries; - int i, j = -1; + int i; char *sname; int nid; X509_NAME_ENTRY * ne; |