diff options
author | xazax-hun <xazax-hun@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-03 19:46:59 +0000 |
---|---|---|
committer | xazax-hun <xazax-hun@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-03 19:46:59 +0000 |
commit | ddc62c278c2b30250ef21c9888cbb22fe59573c2 (patch) | |
tree | 1ba9d1d7a784a14f827aec161895efae36e5982f /src/map/script.c | |
parent | 5c8c4085e746341f2273aaa67c481621a8276e4a (diff) | |
download | hercules-ddc62c278c2b30250ef21c9888cbb22fe59573c2.tar.gz hercules-ddc62c278c2b30250ef21c9888cbb22fe59573c2.tar.bz2 hercules-ddc62c278c2b30250ef21c9888cbb22fe59573c2.tar.xz hercules-ddc62c278c2b30250ef21c9888cbb22fe59573c2.zip |
Regularized file not found error messages.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16073 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |