Moved int pos declaration at the top the func

This commit is contained in:
TakayukiMatsuo
2021-02-24 01:07:45 +09:00
parent 9e4dcfb66c
commit 362d2a2d68

View File

@ -1441,9 +1441,10 @@ int wolfSSL_BIO_seek(WOLFSSL_BIO *bio, int ofs)
} }
int wolfSSL_BIO_tell(WOLFSSL_BIO* bio) int wolfSSL_BIO_tell(WOLFSSL_BIO* bio)
{ {
WOLFSSL_ENTER("wolfSSL_BIO_tell");
int pos; int pos;
WOLFSSL_ENTER("wolfSSL_BIO_tell");
if (bio == NULL) { if (bio == NULL) {
return -1; return -1;
} }