summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
Diffstat (limited to 'src/map')
-rw-r--r--src/map/map.c2
-rw-r--r--src/map/script.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c
index 1e3cdfb3d..9e2dbef25 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -3365,7 +3365,7 @@ int inter_config_read(char *cfgName)
fp=fopen(cfgName,"r");
if(fp==NULL){
- ShowError("File not found: '%s'.\n",cfgName);
+ ShowError("File not found: %s\n",cfgName);
return 1;
}
while(fgets(line, sizeof(line), fp))
diff --git a/src/map/script.c b/src/map/script.c
index 98f11bb9e..26d88ea17 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -3784,7 +3784,7 @@ int script_config_read(char *cfgName)
fp=fopen(cfgName,"r");
if(fp==NULL){
- ShowError("file not found: [%s]\n", cfgName);
+ ShowError("File not found: %s\n", cfgName);
return 1;
}
while(fgets(line, sizeof(line), fp))