mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-10 23:05:34 +00:00
Fix warning from Perl 5.21 in helper script
This commit is contained in:
parent
5791109707
commit
ae738c29eb
|
@ -14,7 +14,7 @@ my @consts;
|
||||||
my $state = 'out';
|
my $state = 'out';
|
||||||
while (<>)
|
while (<>)
|
||||||
{
|
{
|
||||||
if( $state eq 'out' and /^(typedef )?enum {/ ) {
|
if( $state eq 'out' and /^(typedef )?enum \{/ ) {
|
||||||
$state = 'in';
|
$state = 'in';
|
||||||
} elsif( $state eq 'out' and /^(typedef )?enum/ ) {
|
} elsif( $state eq 'out' and /^(typedef )?enum/ ) {
|
||||||
$state = 'start';
|
$state = 'start';
|
||||||
|
|
Loading…
Reference in a new issue