in reply to Re: 3-arg open() does not give warnings!?
in thread 3-arg open() does not give warnings!?

In 3-arg open() does not give warnings!?'s code there are explicit parens so that can hardly be the problem. But then again please check Re: 3-arg open() does not give warnings!?.
  • Comment on Re^2: 3-arg open() does not give warnings!?

Replies are listed 'Best First'.
Re^3: 3-arg open() does not give warnings!?
by sh1tn (Priest) on Jul 15, 2005 at 14:13 UTC
    What I mean is:
    open FH, ">", ( $ARGV[0] || die "...");
    Of course this is not a solution, because this does not check errors from open function but it works fine for me.