Hi,
One more compiler warning:
Error: C4761
integral size mismatch in argument; conversion supplied
offending line:
sa_stuff_dump(msg, one_hdw.sa, sa_index[msg]);
msg unsigned short
one_hdw.sa hdw_data unsigned int
sa_index[msg] unsigned short
Function def:
void sa_stuff_dump(unsigned short, unsigned short, unsigned short);
change call to:
sa_stuff_dump(msg, (unsigned short) (one_hdw.sa), sa_index[msg]);
Is that it?
Have to travel to get to the source & compiler ...
Wayne
One more compiler warning:
Error: C4761
integral size mismatch in argument; conversion supplied
offending line:
sa_stuff_dump(msg, one_hdw.sa, sa_index[msg]);
msg unsigned short
one_hdw.sa hdw_data unsigned int
sa_index[msg] unsigned short
Function def:
void sa_stuff_dump(unsigned short, unsigned short, unsigned short);
change call to:
sa_stuff_dump(msg, (unsigned short) (one_hdw.sa), sa_index[msg]);
Is that it?
Have to travel to get to the source & compiler ...
Wayne