in reply to Unknown problem, throws "Useless use of privt var in void contxt"
Do this instead:my @ch_refnums = &findTickers($file_cont, $anndate);
Only use & if you are overriding one of Perl's built-in functions.my @ch_refnums = findTickers($file_cont, $anndate);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Unknown problem, throws "Useless use of privt var in void contxt"
by S0ci1_Hak0n (Novice) on Jan 21, 2008 at 22:50 UTC | |
by Joost (Canon) on Jan 21, 2008 at 22:56 UTC | |
by Erez (Priest) on Jan 22, 2008 at 09:25 UTC | |
by Joost (Canon) on Jan 22, 2008 at 13:14 UTC |