Skip to content
Snippets Groups Projects
Commit c15b7a2f authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix new clang warning: incompatible pointer types passing 'long *' to parameter of type 'int *'

parent 4197ced7
No related branches found
No related tags found
No related merge requests found
Pipeline #5020 passed
...@@ -60,7 +60,7 @@ int get_text_num(const char* id) ...@@ -60,7 +60,7 @@ int get_text_num(const char* id)
BOOL load_cfg(scfg_t* cfg, char* text[], BOOL prep, BOOL req_cfg, char* error, size_t maxerrlen) BOOL load_cfg(scfg_t* cfg, char* text[], BOOL prep, BOOL req_cfg, char* error, size_t maxerrlen)
{ {
int i; int i;
long line=0L; int line=0;
FILE* fp; FILE* fp;
char str[256]; char str[256];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment