(svn r5974) -Codechange: added casts all around the place to make Windows 64bit happy (michi_cc)

This commit is contained in:
truelight
2006-08-20 12:09:32 +00:00
parent b83703b215
commit 5fb6c9e1cc
11 changed files with 14 additions and 14 deletions

View File

@@ -475,7 +475,7 @@ static byte MakeCzechTownName(char *buf, uint32 seed)
if (do_prefix) {
CzechPattern pattern = name_czech_adj[prefix].pattern;
int endpos;
size_t endpos;
strcat(buf, name_czech_adj[prefix].name);
endpos = strlen(buf) - 1;
@@ -496,7 +496,7 @@ static byte MakeCzechTownName(char *buf, uint32 seed)
if (postfix < lengthof(name_czech_subst_postfix)) {
const char *poststr = name_czech_subst_postfix[postfix];
const char *endstr = name_czech_subst_ending[ending].name;
int postlen, endlen;
size_t postlen, endlen;
postlen = strlen(poststr);
endlen = strlen(endstr);
@@ -507,7 +507,7 @@ static byte MakeCzechTownName(char *buf, uint32 seed)
(poststr[1] != 'v' || poststr[1] != endstr[1]) &&
poststr[2] != endstr[1])
) {
uint buflen;
size_t buflen;
strcat(buf, poststr);
buflen = strlen(buf);