in reply to Calling a subroutine within a conditional
The message you are seeing is a warning. It arises only if you have look_through_file declared with a prototype; for example:
sub look_through_file($$) { ...
There are three ways to deal with this:
sub look_through_file($$);
See Prototypes. Hope that helps,
Athanasius <°(((>< contra mundum
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Calling a subroutine within a conditional
by AnomalousMonk (Archbishop) on Sep 03, 2012 at 23:39 UTC |