diff options
| author | Ray <[email protected]> | 2021-05-22 16:54:04 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-05-22 16:54:04 +0200 |
| commit | 03710c9d8ea5acb04445ce3d125b58da043df6ed (patch) | |
| tree | 6e695068b1f5e34972dbb1b2196540007c5d49ca /src/utils.c | |
| parent | cb698dd37db805a7d33445c22d6077fc35cf288d (diff) | |
| download | raylib-03710c9d8ea5acb04445ce3d125b58da043df6ed.tar.gz raylib-03710c9d8ea5acb04445ce3d125b58da043df6ed.zip | |
Some code tweaks for consistency
Diffstat (limited to 'src/utils.c')
| -rw-r--r-- | src/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c index 66804fb2..c21d2318 100644 --- a/src/utils.c +++ b/src/utils.c @@ -325,7 +325,7 @@ char *LoadFileText(const char *fileName) } // Unload file text data allocated by LoadFileText() -void UnloadFileText(unsigned char *text) +void UnloadFileText(char *text) { RL_FREE(text); } |
