11.07.2015 Views

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Error and Warning Messages(973) only modifier l valid with this format (Parser)The only modifier that is legal with this format is l (for long).(974) type modifier already specified (Parser)This type modifier has already be specified in this type.(975) invalid format specifier or type modifier (Parser)The format specifier or modifier in the printf-style string is illegal for this particular format.(976) field width not valid at this point (Parser)A field width may not appear at this point in a printf() type format specifier.(978) this is an enum (Parser)This identifier following a struct or union keyword is already the tag for an enumerated type, andthus should only follow the keyword enum, e.g.:enum IN {ONE=1, TWO};struct IN { /* woops -- IN is already defined */int a, b;};(979) this is a struct (Parser)This identifier following a union or enum keyword is already the tag for a structure, and thus shouldonly follow the keyword struct, e.g.:struct IN {int a, b;};enum IN {ONE=1, TWO}; /* woops -- IN is already defined */(980) this is a union (Parser)This identifier following a struct or enum keyword is already the tag for a union, and thus shouldonly follow the keyword union, e.g.:318

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!