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

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Error and Warning Messagesstruct {int a;} my_struct;(324) too many arguments for format string (Parser)There are too many arguments for this format string. This is harmless, but may represent an incorrectformat string, e.g.:printf(“%d - %d”, low, high, median); /* woops -- missed a placeholder? */(325) error in format string (Parser)There is an error in the format string here. The string has been interpreted as a printf() style formatstring, and it is not syntactically correct. If not corrected, this will cause unexpected behaviour atrun time, e.g.:printf(“%l”, lll); /* woops -- maybe: printf(“%ld”, lll); */(326) long argument required (Parser)A long argument is required for this format specifier. Check the number and order of format specifiersand corresponding arguments, e.g.:printf(“%lx”, 2);/* woops -- maybe you meant: printf(“%lx”, 2L);(328) integral argument required (Parser)An integral argument is required for this printf-style format specifier. Check the number and orderof format specifiers and corresponding arguments, e.g.:printf(“%d”, 1.23); /* woops -- either wrong number or wrong placeholder */(329) double float argument required (Parser)The printf format specifier corresponding to this argument is %f or similar, and requires a floatingpoint expression. Check for missing or extra format specifiers or arguments to printf.printf(“%f”, 44); /* should be: printf(“%f”, 44.0); */266

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

Saved successfully!

Ooh no, something went wrong!