diff options
author | Andrew Dunstan | 2008-01-31 16:30:24 +0000 |
---|---|---|
committer | Andrew Dunstan | 2008-01-31 16:30:24 +0000 |
commit | 261f4a59e603735584ab93d05cb0a4f2711c683b (patch) | |
tree | d83b192076be51733f0291848309eb0471b293f2 | |
parent | ae18f144d5a28e59f3cd3c319d326b235f10e22e (diff) |
Remove 3 hex digit limit on symbol number in recent fix.
-rw-r--r-- | src/tools/msvc/gendef.pl | 2 |
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"); |