Fix compiler warning

pkcs15-init.c: In function 'verify_pin':
pkcs15-init.c:2840: warning: declaration of 'r' shadows a previous local
pkcs15-init.c:2836: warning: shadowed declaration is here


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@5268 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
ludovic.rousseau 2011-03-23 16:12:21 +00:00
parent b435f6007a
commit 04154504a1
1 changed files with 1 additions and 1 deletions

View File

@ -2837,7 +2837,7 @@ static int verify_pin(struct sc_pkcs15_card *p15card, char *auth_id_str)
if (!auth_id_str) {
struct sc_pkcs15_object *objs[32];
int r, ii;
int ii;
r = sc_pkcs15_get_objects(p15card, SC_PKCS15_TYPE_AUTH_PIN, objs, 32);
if (r < 0) {