mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
Fix tabs
This commit is contained in:
parent
2d0e0083bb
commit
d0f665fddc
@ -35,17 +35,17 @@ while (my $line = <$file>)
|
||||
# stdin working for subcommands in perl while still having a timeout.
|
||||
my $total_syms_as_string;
|
||||
(run (
|
||||
command => "arm-none-eabi-nm pokeemerald.elf | wc -l",
|
||||
buffer => \$total_syms_as_string,
|
||||
timeout => 30
|
||||
command => "arm-none-eabi-nm pokeemerald.elf | wc -l",
|
||||
buffer => \$total_syms_as_string,
|
||||
timeout => 30
|
||||
))
|
||||
or die "ERROR: Error while getting all symbols: $?";
|
||||
|
||||
my $undocumented_as_string;
|
||||
(run (
|
||||
command => "arm-none-eabi-nm pokeemerald.elf | grep \"Unknown_\\|sub_\" | wc -l",
|
||||
buffer => \$undocumented_as_string,
|
||||
timeout => 30
|
||||
command => "arm-none-eabi-nm pokeemerald.elf | grep \"Unknown_\\|sub_\" | wc -l",
|
||||
buffer => \$undocumented_as_string,
|
||||
timeout => 30
|
||||
))
|
||||
or die "ERROR: Error while filtering for undocumented symbols: $?";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user