mirror of
https://github.com/postgres/postgres.git
synced 2026-03-01 04:40:42 -05:00
Fix precedence problem in new Perl code.
I think this bit of commit 1f1cd9b5d didn't do quite what I meant :-(
This commit is contained in:
parent
1cd2445c99
commit
59cb323053
1 changed files with 1 additions and 1 deletions
|
|
@ -356,7 +356,7 @@ sub RenameTempFile
|
|||
if (-f $final_name
|
||||
&& compare($temp_name, $final_name) == 0)
|
||||
{
|
||||
unlink $temp_name || die "unlink: $temp_name: $!";
|
||||
unlink($temp_name) || die "unlink: $temp_name: $!";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue