diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-03-01 01:09:53 -0500 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-03-01 01:09:53 -0500 |
commit | d0f665fddcff922390960e98fcd2f83b6890c602 (patch) | |
tree | f53998466507ffc09d5874f41cfd3ab69b8d1b0e | |
parent | 2d0e0083bb454880765a8cff7e45f250f6f22284 (diff) |
Fix tabs
-rwxr-xr-x | .travis/calcrom/calcrom.pl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis/calcrom/calcrom.pl b/.travis/calcrom/calcrom.pl index 696d228fe..354f9bcee 100755 --- a/.travis/calcrom/calcrom.pl +++ b/.travis/calcrom/calcrom.pl @@ -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: $?"; |