summaryrefslogtreecommitdiffhomepage
path: root/src/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c
index aa2bfc40..ac57a215 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -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);