Andy Dougherty:
# Overall, it continues to look very good.  Unfortunately, the 
# compact-looking
# 
#     ch=va_arg((va_list)obj->data, char);
# 
# gave Sun's compiler indigestion.  I had to split it up into 
# the much more pedestrian
# 
#      va_list arg;
#      arg = (va_list) obj->data;
#      ch = va_arg(arg, char);

Can you try putting the first code back in, but change the object call
to be like this:

        ((va_list)(obj->data))

?  I'm not sure yet, but this *may* be causing your other problems.

--Brent Dax <[EMAIL PROTECTED]>
@roles=map {"Parrot $_"} qw(embedding regexen Configure)

Wire telegraph is a kind of a very, very long cat. You pull his tail in
New York and his head is meowing in Los Angeles. And radio operates
exactly the same way. The only difference is that there is no cat.
    --Albert Einstein (explaining radio)

Reply via email to