From d0f665fddcff922390960e98fcd2f83b6890c602 Mon Sep 17 00:00:00 2001 From: Phlosioneer Date: Fri, 1 Mar 2019 01:09:53 -0500 Subject: [PATCH] Fix tabs --- .travis/calcrom/calcrom.pl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis/calcrom/calcrom.pl b/.travis/calcrom/calcrom.pl index 696d228fe6..354f9bcee5 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: $?";