On 02/10/2013 03:46, David Duffy (AVD) wrote: > I'm using MPLAB and XC8 for a project and would like to enable a warning= =20 > option. Where in MPLAB do I do this? Can it be done? >=20 > The warning option I'd like to add is where a function has been called=20 > without the parentheses. ie. foo instead of foo() David, For functions with no parameters, my MPLABX/XC8 combination correctly fails compilation for the following: unsigned char foo(unsigned char bar) { .. } ... foo 0xAA; However, for the case with no parameters, I can't seem to get a warning even with the "Verbose", "Strict ANSI Conformance" and warnings set to 9. The commandline options were: -P -N255 --strict --warn=3D9 --asmlist --opt=3Ddefault,+asm,-asmfile,+speed,-space,-debug --addrqual=3Dignore --mode=3Dfree David --=20 http://www.piclist.com/techref/piclist PIC/SX FAQ & list archive View/change your membership options at http://mailman.mit.edu/mailman/listinfo/piclist .