Thank god this thread exists =)
Thank you very much for posting a fix.
I took the changes posted here and made a small tweak. Instead of replacing all the AssertNoErrors in the code, I changed the macro:
#define AssertNoError(inMessage, inHandler) \
if(result != noErr) \
{ \
printf("%s: %d\n", inMessage, (int)result); \
}
Compiling fine and dandy now!
|