Commit 59cb3230 authored by Tom Lane's avatar Tom Lane

Fix precedence problem in new Perl code.

I think this bit of commit 1f1cd9b5 didn't do quite what I meant :-(
parent 1cd2445c
......@@ -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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment