git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16073 54d463be-8e91-2dee-dedb-b68131a5f0ec
@@ -4241,7 +4241,7 @@ void sql_config_read(const char* cfgName)
ShowInfo("Reading file %s...\n", cfgName);
if ((fp = fopen(cfgName, "r")) == NULL) {
- ShowError("file not found: %s\n", cfgName);
+ ShowError("File not found: %s\n", cfgName);
return;
}
@@ -694,7 +694,7 @@ static int inter_config_read(const char* cfgName)
fp = fopen(cfgName, "r");
if(fp == NULL) {
return 1;
@@ -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);
while(fgets(line, sizeof(line), fp))
@@ -3784,7 +3784,7 @@ int script_config_read(char *cfgName)
- ShowError("file not found: [%s]\n", cfgName);