Skip to content

Commit

Permalink
Fix uninit variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Dec 3, 2019
1 parent d2f9d95 commit 1d83809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gedcom
Expand Up @@ -4736,9 +4736,9 @@ sub print_person
} elsif($placeofdeath && $placeofburial && ($placeofburial eq $placeofdeath) &&
$burial->address() && !$death->address()) {
$bio .= ' and is buried there at ' . $burial->address();
} else {
} elsif(my $b = place($opts)) {
$bio .= (($language eq 'French') ? ' et est enterré' : ' and is buried') .
place($opts);
$b;
}
if(my $b = notes({ record => ($burial // $cremation), paragraph => 0 })) {
$b =~ tr/\r//;
Expand Down

0 comments on commit 1d83809

Please sign in to comment.