mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-06-03 16:28:31 +00:00
Don't shadow the variable p
This commit is contained in:
parent
b44692f126
commit
12ab5d4cfb
|
@ -2287,10 +2287,10 @@ int main( int argc, char *argv[] )
|
||||||
{
|
{
|
||||||
mbedtls_ssl_async_sign_t *sign = NULL;
|
mbedtls_ssl_async_sign_t *sign = NULL;
|
||||||
mbedtls_ssl_async_decrypt_t *decrypt = NULL;
|
mbedtls_ssl_async_decrypt_t *decrypt = NULL;
|
||||||
const char *p;
|
const char *r;
|
||||||
for( p = opt.async_operations; *p; p++ )
|
for( r = opt.async_operations; *r; r++ )
|
||||||
{
|
{
|
||||||
switch( *p )
|
switch( *r )
|
||||||
{
|
{
|
||||||
case 'd':
|
case 'd':
|
||||||
decrypt = ssl_async_decrypt;
|
decrypt = ssl_async_decrypt;
|
||||||
|
|
Loading…
Reference in a new issue