summaryrefslogtreecommitdiff
path: root/src/map/map.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/map.c')
-rw-r--r--src/map/map.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c
index 6df33fe26..1acee0c9b 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -2777,7 +2777,8 @@ int map_config_read(char *cfgName)
ShowFatalError("Map configuration file not found at: %s\n", cfgName);
exit(1);
}
- while(fgets(line, sizeof(line) -1, fp)) {
+ while(fgets(line, sizeof(line), fp))
+ {
if (line[0] == '/' && line[1] == '/')
continue;
@@ -2877,7 +2878,8 @@ int inter_config_read(char *cfgName)
ShowError("File not found: '%s'.\n",cfgName);
return 1;
}
- while(fgets(line,1020,fp)){
+ while(fgets(line, sizeof(line), fp))
+ {
if(line[0] == '/' && line[1] == '/')
continue;
i=sscanf(line,"%[^:]: %[^\r\n]",w1,w2);