Skip to content

Commit

Permalink
Fix uninitialised variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jul 16, 2024
1 parent 47e5257 commit d55c819
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 @@ -810,7 +810,7 @@ if((!defined($home)) && defined($config)) {
if($home) {
$me = $ged->get_individual($home);
if((!defined($me)) || !ref($me)) {
die "$0: Can't find '$opts{h}' in $ARGV[0]";
die "$0: Can't find '$home' in $ARGV[0]";
}
}

Expand Down

0 comments on commit d55c819

Please sign in to comment.