summaryrefslogtreecommitdiff
path: root/src/char
diff options
context:
space:
mode:
Diffstat (limited to 'src/char')
-rw-r--r--src/char/int_guild.c4
-rw-r--r--src/char/int_homun.c2
-rw-r--r--src/char/int_party.c2
-rw-r--r--src/char/int_pet.c2
-rw-r--r--src/char/int_status.c2
-rw-r--r--src/char/int_storage.c8
-rw-r--r--src/char/inter.c2
7 files changed, 11 insertions, 11 deletions
diff --git a/src/char/int_guild.c b/src/char/int_guild.c
index bc17f2ff1..daa80e6d6 100644
--- a/src/char/int_guild.c
+++ b/src/char/int_guild.c
@@ -489,7 +489,7 @@ int inter_guild_save() {
int lock;
if ((fp = lock_fopen(guild_txt, &lock)) == NULL) {
- ShowError("int_guild: cant write [%s] !!! data is lost !!!\n", guild_txt);
+ ShowError("int_guild: can't write [%s] !!! data is lost !!!\n", guild_txt);
return 1;
}
guild_db->foreach(guild_db, inter_guild_save_sub, fp);
@@ -498,7 +498,7 @@ int inter_guild_save() {
// printf("int_guild: %s saved.\n", guild_txt);
if ((fp = lock_fopen(castle_txt,&lock)) == NULL) {
- ShowError("int_guild: cant write [%s] !!! data is lost !!!\n", castle_txt);
+ ShowError("int_guild: can't write [%s] !!! data is lost !!!\n", castle_txt);
return 1;
}
castle_db->foreach(castle_db, inter_castle_save_sub, fp);
diff --git a/src/char/int_homun.c b/src/char/int_homun.c
index a07378c2a..6d93a375a 100644
--- a/src/char/int_homun.c
+++ b/src/char/int_homun.c
@@ -163,7 +163,7 @@ int inter_homun_save()
FILE *fp;
int lock;
if( (fp=lock_fopen(homun_txt,&lock))==NULL ){
- ShowError("int_homun: cant write [%s] !!! data is lost !!!\n",homun_txt);
+ ShowError("int_homun: can't write [%s] !!! data is lost !!!\n",homun_txt);
return 1;
}
homun_db->foreach(homun_db,inter_homun_save_sub,fp);
diff --git a/src/char/int_party.c b/src/char/int_party.c
index ed4424d5e..8f8e22583 100644
--- a/src/char/int_party.c
+++ b/src/char/int_party.c
@@ -236,7 +236,7 @@ int inter_party_save() {
int lock;
if ((fp = lock_fopen(party_txt, &lock)) == NULL) {
- ShowError("int_party: cant write [%s] !!! data is lost !!!\n", party_txt);
+ ShowError("int_party: can't write [%s] !!! data is lost !!!\n", party_txt);
return 1;
}
party_db->foreach(party_db, inter_party_save_sub, fp);
diff --git a/src/char/int_pet.c b/src/char/int_pet.c
index 97fef3799..81c485f18 100644
--- a/src/char/int_pet.c
+++ b/src/char/int_pet.c
@@ -134,7 +134,7 @@ int inter_pet_save()
FILE *fp;
int lock;
if( (fp=lock_fopen(pet_txt,&lock))==NULL ){
- ShowError("int_pet: cant write [%s] !!! data is lost !!!\n",pet_txt);
+ ShowError("int_pet: can't write [%s] !!! data is lost !!!\n",pet_txt);
return 1;
}
pet_db->foreach(pet_db,inter_pet_save_sub,fp);
diff --git a/src/char/int_status.c b/src/char/int_status.c
index 7ece61ccd..a0473f01a 100644
--- a/src/char/int_status.c
+++ b/src/char/int_status.c
@@ -146,7 +146,7 @@ void inter_status_save()
int lock;
if ((fp = lock_fopen(scdata_txt, &lock)) == NULL) {
- ShowError("int_status: cant write [%s] !!! data is lost !!!\n", scdata_txt);
+ ShowError("int_status: can't write [%s] !!! data is lost !!!\n", scdata_txt);
return;
}
scdata_db->foreach(scdata_db, inter_status_save_sub, fp);
diff --git a/src/char/int_storage.c b/src/char/int_storage.c
index 06b05ba25..5f1f68275 100644
--- a/src/char/int_storage.c
+++ b/src/char/int_storage.c
@@ -199,7 +199,7 @@ int inter_storage_init()
fp=fopen(storage_txt,"r");
if(fp==NULL){
- ShowError("cant't read : %s\n",storage_txt);
+ ShowError("can't read : %s\n",storage_txt);
return 1;
}
while(fgets(line,65535,fp)){
@@ -227,7 +227,7 @@ int inter_storage_init()
fp=fopen(guild_storage_txt,"r");
if(fp==NULL){
- ShowError("cant't read : %s\n",guild_storage_txt);
+ ShowError("can't read : %s\n",guild_storage_txt);
return 1;
}
while(fgets(line,65535,fp)){
@@ -276,7 +276,7 @@ int inter_storage_save()
FILE *fp;
int lock;
if( (fp=lock_fopen(storage_txt,&lock))==NULL ){
- ShowError("int_storage: cant write [%s] !!! data is lost !!!\n",storage_txt);
+ ShowError("int_storage: can't write [%s] !!! data is lost !!!\n",storage_txt);
return 1;
}
storage_db->foreach(storage_db,inter_storage_save_sub,fp);
@@ -304,7 +304,7 @@ int inter_guild_storage_save()
FILE *fp;
int lock;
if( (fp=lock_fopen(guild_storage_txt,&lock))==NULL ){
- ShowError("int_storage: cant write [%s] !!! data is lost !!!\n",guild_storage_txt);
+ ShowError("int_storage: can't write [%s] !!! data is lost !!!\n",guild_storage_txt);
return 1;
}
guild_storage_db->foreach(guild_storage_db,inter_guild_storage_save_sub,fp);
diff --git a/src/char/inter.c b/src/char/inter.c
index fd46e0b33..8c5d1c641 100644
--- a/src/char/inter.c
+++ b/src/char/inter.c
@@ -156,7 +156,7 @@ int inter_accreg_save(void) {
int lock;
if ((fp = lock_fopen(accreg_txt,&lock)) == NULL) {
- ShowError("int_accreg: cant write [%s] !!! data is lost !!!\n", accreg_txt);
+ ShowError("int_accreg: can't write [%s] !!! data is lost !!!\n", accreg_txt);
return 1;
}
accreg_db->foreach(accreg_db, inter_accreg_save_sub,fp);