From 1a00b9bd264ba2495930be05cd0ed2b1c13b8ef8 Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Mon, 19 Aug 2013 17:58:42 -0700 Subject: [PATCH] =?utf8?q?Remove=20compile=20warning:=20=20=20=20warning:?= =?utf8?q?=20unused=20variable=20=E2=80=98j=E2=80=99=20[-Wunused-variable]?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- ext/openssl/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1