RE: [Perl-unix-users] fcntl()

2001-01-12 Thread Nikola Knezevic
Dana 12.01.01, Elston, Jeremy napisa: > The value is not initialized. As the error states, $fct has not been > initialized (assigned a value). Initialize $fct by assigning a value to it. > my $fct = 0; > or > my($fct); > $fct = 0; > etc... > Bear in mind that this is only a wa

RE: [Perl-unix-users] fcntl()

2001-01-12 Thread Elston, Jeremy
The value is not initialized. As the error states, $fct has not been initialized (assigned a value). Initialize $fct by assigning a value to it. my $fct = 0; or my($fct); $fct = 0; etc... Bear in mind that this is only a warning, not a critical error. This error does