Minor bugfix for profile parsing

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9087 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Brandon Low 2006-03-18 09:12:14 +00:00
parent 2457de11b6
commit b09573120a

View file

@ -84,7 +84,7 @@ sub get_name {
return $offsets{$location};
} else {
my $retval = $_[0];
$retval =~ y/[A-Z]/a-z/;
$retval =~ y/[A-Z]/[a-z]/;
warning("No symbol found for $retval");
return $retval;
}