diff options
author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-07-08 19:38:46 +0000 |
---|---|---|
committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-07-08 19:38:46 +0000 |
commit | 0a59e04b307f7a5f86724173095ce493d1958774 (patch) | |
tree | 3247d2bff52e7534dcaa88101a534006ac04f97a | |
parent | 7414140f7cb275e0cc9047dea4a9d379164f0b58 (diff) |
utils/analysis/find_addr.pl: fix detection of codec start address
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21726 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-x | utils/analysis/find_addr.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/analysis/find_addr.pl b/utils/analysis/find_addr.pl index dca85fdbdc..0e8ef28c48 100755 --- a/utils/analysis/find_addr.pl +++ b/utils/analysis/find_addr.pl @@ -134,7 +134,7 @@ if($lookaddr != 0) if(/^\.([^\s]+)\s*(0x[0-9a-fA-F]+)/) { ($addr) = sscanf("0x%lx", $2); - if($1 eq "plugin" || $1 eq "codec") + if($1 eq "plugin") { $plugin_addr = $addr; } |