Skip to content

Commit

Permalink
Fix uninitialised variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jun 19, 2024
1 parent af01c4b commit 3c89e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ged2site
Original file line number Diff line number Diff line change
Expand Up @@ -4527,7 +4527,7 @@ sub print_person
my @childnames;
while(my ($key, $value) = each %childmap) {
push @childnames,
conjunction(map { given_names($_) } @{$value}) .
conjunction(map { given_names($_) || 'Unknown' } @{$value}) .
i18n(' with ') .
$key;
}
Expand Down

0 comments on commit 3c89e83

Please sign in to comment.