in reply to Failing to warn about "Found = in conditional"
Perhaps it would be easier to fix your code?
If you change:
} elsif ($count = 2) { # ERROR HEREto be:
} elsif ($count == 2) { # ERROR HEREThat just might fix the issue, which is what the error message that you listed seems to be indicating.
Of course, that's just a suggestion.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Failing to warn about "Found = in conditional"
by FloydATC (Deacon) on Apr 17, 2012 at 06:22 UTC |