Fix warnings in CMake source code.

This commit is contained in:
David Cole 2009-09-30 11:42:40 -04:00
parent a9dcc7fd47
commit 004626d179
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ static bool OutputBin(FILE* file, const char * buf,
success = false;
break;
}
outBuf[outBufCount] = convertedByte & 0xff;
outBuf[outBufCount] = static_cast<char>(convertedByte & 0xff);
outBufCount++;
}
if (success)