heena s wrote:
hi,
Hello,
this is one line in the subroutine:
&printflush ("TRACEFILE","$message \n");
and i am getting this error
time for a new script that doesn't use old deprecated style code...
printflush('TRACEFILE', "$message\n");
or even
printflush 'TRACEFILE', "$message\n";
Undefined subroutine &main::printflush called at debugtest.pl at line35
wherever printflush is defined it isn't being loaded (IE use Whatever;),
imported (IE use Whatever qw(printflush);) or was removed from your
script (IE is used to have sub printflush but someone removed it.)
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>