Ok, the whole point of the -w switch is so I know what's happening......

Anyway, I made the modifications you suggested and it eliminated all but the
first error message.

I don't understand why I'm getting uninitialized value errors when I did
initialize the values......

Thanks for your help
-David

-----Original Message-----
From: Iain Wade [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 07, 1999 8:13 PM
To: [EMAIL PROTECTED]
Subject: Re: perl script has problems (kinda OT)

Get rid of the -w on the command line and they will magically dissapear.

This won't fix the problem of course, but it will turn off the warning
messages :)

The line;
    $inness[$i] = $inness[$i] . $in;

Would probably be better of being;
    $inness[$i] = $in;

Considering that $i is incremented immediately afterwards it has nothing to
append to ..

Regards,
--
Iain Wade - Optus Internet
Email: [EMAIL PROTECTED]


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to