mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-20 05:53:40 -04:00
MSVC warnings (#5595)
This commit is contained in:
@ -60,7 +60,7 @@ int main(void)
|
||||
//----------------------------------------------------------------------------------
|
||||
if (btnComputeHashes)
|
||||
{
|
||||
int textInputLen = strlen(textInput);
|
||||
int textInputLen = (int)strlen(textInput);
|
||||
|
||||
// Encode data to Base64 string (includes NULL terminator), memory must be MemFree()
|
||||
base64Text = EncodeDataBase64((unsigned char *)textInput, textInputLen, &base64TextSize);
|
||||
|
||||
Reference in New Issue
Block a user