summaryrefslogtreecommitdiffhomepage
path: root/src/utils.c
diff options
context:
space:
mode:
authorRay <[email protected]>2020-11-03 23:47:33 +0100
committerRay <[email protected]>2020-11-03 23:47:33 +0100
commit3e1cd487dfe1e1381e1effb71fc069cb4dd8ad20 (patch)
treeb1f88ab590e601a0932da43e4c780402b46db5a7 /src/utils.c
parentf46514b855f5790b9ccef440ce8df2c84ce92415 (diff)
downloadraylib-3e1cd487dfe1e1381e1effb71fc069cb4dd8ad20.tar.gz
raylib-3e1cd487dfe1e1381e1effb71fc069cb4dd8ad20.zip
Remove trailing spaces
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 05f6808b..e0e551d6 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -317,7 +317,7 @@ FILE *android_fopen(const char *fileName, const char *mode)
// NOTE: AAsset provides access to read-only asset
AAsset *asset = AAssetManager_open(assetManager, fileName, AASSET_MODE_UNKNOWN);
- if (asset != NULL)
+ if (asset != NULL)
{
// Return pointer to file in the assets
return funopen(asset, android_read, android_write, android_seek, android_close);