This error message was 'runaway "struct_name"', which isn't all
that clear; I think 'could not find closing brace for "struct_name"'
is better. Also, provide the location of the struct start using the
script's usual '$file:$lineno' style.
Bug: #18901
Reported-by: Clemens Ruck <[email protected]>
Author: Tom Lane <
[email protected]>
Discussion: https://postgr.es/m/18901-
424272abe01357e6@postgresql.org
foreach my $infile (@ARGV)
{
my $in_struct;
+ my $in_struct_lineno;
my $subline;
my $is_node_struct;
my $supertype;
if ($line =~ /^(?:typedef )?struct (\w+)$/ && $1 ne 'Node')
{
$in_struct = $1;
+ $in_struct_lineno = $lineno;
$subline = 0;
}
# one node type typedef'ed directly from another
if ($in_struct)
{
- die "runaway \"$in_struct\" in file \"$infile\"\n";
+ die
+ "$infile:$in_struct_lineno: could not find closing brace for struct \"$in_struct\"\n";
}
close $ifh;