Avoid compiler warnings triggered by the previous revision.

This commit is contained in:
Markus Armbruster 2006-01-14 16:13:30 +00:00
parent 48c6a88768
commit 21e3c9d55e
2 changed files with 4 additions and 2 deletions

View file

@ -61,7 +61,8 @@ mission(void)
int type; int type;
int mission; int mission;
coord x, y; coord x, y;
int size, desired_radius, radius; size_t size;
int desired_radius, radius;
struct sctstr opsect; struct sctstr opsect;
s_char *block; s_char *block;
struct genitem *gp; struct genitem *gp;

View file

@ -876,7 +876,8 @@ mission_name(short int mission)
void void
show_mission(int type, struct nstr_item *np) show_mission(int type, struct nstr_item *np)
{ {
int size, first = 1, radius; size_t size;
int first = 1, radius;
s_char *block; s_char *block;
struct genitem *gp; struct genitem *gp;