summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan2008-01-31 16:30:24 +0000
committerAndrew Dunstan2008-01-31 16:30:24 +0000
commit261f4a59e603735584ab93d05cb0a4f2711c683b (patch)
treed83b192076be51733f0291848309eb0471b293f2
parentae18f144d5a28e59f3cd3c319d326b235f10e22e (diff)
Remove 3 hex digit limit on symbol number in recent fix.
-rw-r--r--src/tools/msvc/gendef.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/gendef.pl b/src/tools/msvc/gendef.pl
index 30959ee8d3..d30417c009 100644
--- a/src/tools/msvc/gendef.pl
+++ b/src/tools/msvc/gendef.pl
@@ -27,7 +27,7 @@ while (<$ARGV[0]/*.obj>)
{
s/\(\)//g;
my @pieces = split;
- next unless $pieces[0] =~ /^[A-F0-9]{3}$/;
+ next unless $pieces[0] =~ /^[A-F0-9]{3,}$/;
next unless $pieces[6];
next if ($pieces[2] eq "UNDEF");
next unless ($pieces[4] eq "External");