Re: Problem compiling scotty on hp-ux 9.01

Buz Owen (ado@BBN.COM)
Tue, 26 Nov 1996 19:28:15 -0500

>cc: "../tnm/generic/tnmIcmp.c", line 118: error 1716: Automatic
>aggregate initia
>lization is an ANSI feature.
>*** Error code 1

I saw this a few days ago compiling under SUNOS 4.1.4.
I just changed the line from:

TnmIcmpTarget target = icmpPtr->targets[i];
to:
TnmIcmpTarget target ; target = icmpPtr->targets[i];

/b