* budemang.c (demangle): Fix thinko.

This commit is contained in:
Alan Modra 2004-10-18 07:26:30 +00:00
parent 2bb2d727c1
commit 7f67d4c98a
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2004-10-18 Alan Modra <amodra@bigpond.net.au>
* budemang.c (demangle): Fix thinko.
* budemang.c (demangle): Handle "@plt" suffix.
2004-10-14 Nick Clifton <nickc@redhat.com>

View File

@ -52,7 +52,7 @@ demangle (bfd *abfd, const char *name)
pre = name;
while (*name == '.')
++name;
pre_len = pre - name;
pre_len = name - pre;
alloc = NULL;
suf = strchr (name, '@');