Subject: | Fails to build on MACOS/X 10.1 |
RedHex() in Carbon.h fails to compile:
char hexbyte[3];
hexbyte[2] = 0;
int i, j;
should read:
char hexbyte[3];
int i, j;
hexbyte[2] = 0;
i.e. declarations should be at the top of a block (this is C not C++!!)