Zwei kleine kosmetische Fehler.

This commit is contained in:
Enno Rehling 2005-05-05 02:35:48 +00:00
parent 2483a3c229
commit 47086fc8c1
2 changed files with 2 additions and 1 deletions

View File

@ -1326,6 +1326,7 @@ describe(FILE * F, const region * r, int partial, faction * f)
else { else {
strcpy(bufp++, " "); strcpy(bufp++, " ");
MSG(("nr_vicinitystart", "dir region", d, r2), bufp, sizeof(buf)-(bufp-buf), f->locale, f); MSG(("nr_vicinitystart", "dir region", d, r2), bufp, sizeof(buf)-(bufp-buf), f->locale, f);
bufp += strlen(bufp);
dh = true; dh = true;
} }
} }

View File

@ -615,7 +615,7 @@ spskill(char * buffer, const struct locale * lang, const struct unit * u, skill_
if (!*dh) { if (!*dh) {
pbuf += strlcpy(pbuf, LOC(lang, "nr_skills")); pbuf += strlcpy(pbuf, LOC(lang, "nr_skills"));
strcpy(pbuf++, " "); pbuf += strlcpy(pbuf, ": ");
*dh = 1; *dh = 1;
} }
pbuf += strlcpy(pbuf, skillname(sk, lang)); pbuf += strlcpy(pbuf, skillname(sk, lang));