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 warning, not a critical error.  This error
> does not prevent the program from working.

Stupid me. I didn't read man page carefully. The third argument is argument
passed to function/or whatever. I thought that the result is going to be
there. Skut.
Now I see what was wrong, flags are returned by the function, not stored in
third argument. And, on the second thought I see that my code won't work in
the way I wished, because the third parametar is passed by value, not by
reference.

Thanks...

-- 
  +- -- - --- ----[ http://users.hemo.net/indy ]---- -- -
       Knezevic Nikola :: [EMAIL PROTECTED]
                               hemo.net
         - --- -- ----- ----==----===---------===-----------+

_______________________________________________
Perl-Unix-Users mailing list. To unsubscribe go to 
http://listserv.ActiveState.com/mailman/subscribe/perl-unix-users

Reply via email to