diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-04-28 01:27:20 -0700 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-04-28 01:27:20 -0700 |
commit | 41d73a1bc002618cb42ba395018a87d72d915add (patch) | |
tree | 0eac4e979fde66c67632b0b434b276df3896f628 /conform/conformtest.pl | |
parent | adae8f5ed5db7fec25b54eb8c21c2e39f39c6040 (diff) | |
download | glibc-41d73a1bc002618cb42ba395018a87d72d915add.tar glibc-41d73a1bc002618cb42ba395018a87d72d915add.tar.gz glibc-41d73a1bc002618cb42ba395018a87d72d915add.tar.bz2 glibc-41d73a1bc002618cb42ba395018a87d72d915add.zip |
conformtest: Fix typo in handling typed-constant from allow-header.
Diffstat (limited to 'conform/conformtest.pl')
-rw-r--r-- | conform/conformtest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conform/conformtest.pl b/conform/conformtest.pl index 83650c2454..2962e5552b 100644 --- a/conform/conformtest.pl +++ b/conform/conformtest.pl @@ -1095,7 +1095,7 @@ while ($#headers >= 0) { } elsif (/^constant *([a-zA-Z0-9_]*) *([A-Za-z0-9_]*)?/) { push @allow, $1; } elsif (/^typed-constant *([a-zA-Z0-9_]*) *({([^}]*)}|([^ ]*)) *([A-Za-z0-9_]*)?/) { - push @allow, 1; + push @allow, $1; } elsif (/^(type|tag) *({([^}]*)|([a-zA-Z0-9_]*))/) { my($type) = "$3$4"; |