Fix warnings in CMake source code.
This commit is contained in:
parent
a9dcc7fd47
commit
004626d179
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue