From cea7d71b8c9379347770153ab5b7643cbdf7601d Mon Sep 17 00:00:00 2001 From: MrGeorgen Date: Wed, 24 Jun 2020 16:42:27 +0200 Subject: [PATCH] acl_ReadTextFile takes now a const char *filePath as argument --- src/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file.c b/src/file.c index d1cb7e3..0963fa3 100644 --- a/src/file.c +++ b/src/file.c @@ -1,7 +1,7 @@ #include #include #include -char* acl_ReadTextFile(char *filePath, bool *sucess){ +char* acl_ReadTextFile(const char *filePath, bool *sucess){ FILE *fp = fopen(filePath, "rb"); size_t lSize; char *buffer;