From aed0fee2cadc64e136717c0c7b3a1e57225738dc Mon Sep 17 00:00:00 2001 From: raysan5 Date: Thu, 1 Apr 2021 20:24:33 +0200 Subject: Remove trailing spaces --- src/utils.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index 9579346e..9ef19b18 100644 --- a/src/utils.c +++ b/src/utils.c @@ -189,7 +189,7 @@ unsigned char *LoadFileData(const char *fileName, unsigned int *bytesRead) if (fileName != NULL) { - if (loadFileData) + if (loadFileData) { data = loadFileData(fileName, bytesRead); return data; @@ -243,7 +243,7 @@ bool SaveFileData(const char *fileName, void *data, unsigned int bytesToWrite) if (fileName != NULL) { - if (saveFileData) + if (saveFileData) { saveFileData(fileName, data, bytesToWrite); return success; @@ -265,7 +265,7 @@ bool SaveFileData(const char *fileName, void *data, unsigned int bytesToWrite) else TRACELOG(LOG_WARNING, "FILEIO: [%s] Failed to open file", fileName); #else TRACELOG(LOG_WARNING, "FILEIO: Standard file io not supported, use custom file callback"); -#endif +#endif } else TRACELOG(LOG_WARNING, "FILEIO: File name provided is not valid"); @@ -280,7 +280,7 @@ char *LoadFileText(const char *fileName) if (fileName != NULL) { - if (loadFileText) + if (loadFileText) { text = loadFileText(fileName); return text; @@ -338,7 +338,7 @@ bool SaveFileText(const char *fileName, char *text) if (fileName != NULL) { - if (saveFileText) + if (saveFileText) { saveFileText(fileName, text); return success; -- cgit v1.2.3