HI all,
I have a console program which spits out messages along the lines of:
fixme:msvcrt:MSVCRT__sopen : pmode 0x01a0 ignored
Looking at the code to MSVCRT__sopen I find this:
if(pmode & ~(_S_IREAD | _S_IWRITE)) FIXME(": pmode 0x%04x ignored\n", pmode); else WARN(": pmode 0x%04x ignored\n", pmode);
Would it not be safe to just delete both the FIXME and the WARN or am I missing something?
Cheers, Erik