On Mon, 21 Feb 2005, Kathy Quinlan wrote:

> Hi Guys,
>
> Here is a section of my code:
>
> *** Wtrend_Drivers.c ***
> unsigned char Length , Network , Receiver , Node , Command = 0x00;
> //Some Variables
>
> These are some of the errors I get in pairs for each of the above variables:
>
> Wtrend_Drivers.c:15: conflicting types for `Receiver'
> Wtrend_Drivers.h:9: previous declaration of `Receiver'

Try giving "Receiver" a different identifier.  Also, if you are trying to
limit the scope of Length, Network, Receiver, Node and Command to
Wtrend_Drivers.*, then give line 9 of Wtrend_Driver.h the "static"
qualifier.

Hope this helps, Zera Holladay

p.s. Watch the parameters in your function definitions too, you may get
them mixed-up.
_______________________________________________
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to