mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 12:48:32 +00:00
Fix warning in main_test
This commit is contained in:
parent
dfab4c1193
commit
2d5f142dc6
1 changed files with 3 additions and 3 deletions
|
@ -144,8 +144,8 @@ int parse_arguments( char *buf, size_t len, char *params[50] )
|
||||||
{
|
{
|
||||||
if( *p == '\\' )
|
if( *p == '\\' )
|
||||||
{
|
{
|
||||||
*p++;
|
p++;
|
||||||
*p++;
|
p++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if( *p == ':' )
|
if( *p == ':' )
|
||||||
|
@ -158,7 +158,7 @@ int parse_arguments( char *buf, size_t len, char *params[50] )
|
||||||
*p = '\0';
|
*p = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
*p++;
|
p++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Replace newlines, question marks and colons in strings
|
// Replace newlines, question marks and colons in strings
|
||||||
|
|
Loading…
Reference in a new issue