diff options
Diffstat (limited to 'src/char')
-rw-r--r-- | src/char/char.c | 2 | ||||
-rw-r--r-- | src/char/inter.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/char/char.c b/src/char/char.c index e0c4cd84d..c6c779a00 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -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; } diff --git a/src/char/inter.c b/src/char/inter.c index 16cd356ab..80dc9372c 100644 --- a/src/char/inter.c +++ b/src/char/inter.c @@ -694,7 +694,7 @@ static int inter_config_read(const 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; } |