Remove trailing spaces

This commit is contained in:
Ray 2023-06-17 16:48:18 +02:00
parent 2209e5b0ca
commit 830e328df0
5 changed files with 11 additions and 11 deletions

View file

@ -348,7 +348,7 @@ char *LoadFileText(const char *fileName)
if (size > 0)
{
text = (char *)RL_MALLOC((size + 1)*sizeof(char));
if (text != NULL)
{
unsigned int count = (unsigned int)fread(text, sizeof(char), size, file);