diff options
Diffstat (limited to 'media/libopus/celt/arm/arm2gnu.pl')
-rwxr-xr-x | media/libopus/celt/arm/arm2gnu.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/libopus/celt/arm/arm2gnu.pl b/media/libopus/celt/arm/arm2gnu.pl index 6c922ac819..a2895f7445 100755 --- a/media/libopus/celt/arm/arm2gnu.pl +++ b/media/libopus/celt/arm/arm2gnu.pl @@ -164,11 +164,11 @@ while (<>) { $prefix = ""; if ($proc) { - $prefix = $prefix.sprintf("\t.type\t%s, %%function; ",$proc) unless ($apple); + $prefix = $prefix.sprintf("\t.type\t%s, %%function", $proc) unless ($apple); # Make sure we $prefix isn't empty here (for the $apple case). # We handle mangling the label here, make sure it doesn't match # the label handling below (if $prefix would be empty). - $prefix = "; "; + $prefix = $prefix."; "; push(@proc_stack, $proc); s/^[A-Za-z_\.]\w+/$symprefix$&:/; } |