Warning cleanup.
This commit is contained in:
@@ -390,7 +390,7 @@ E NEARDATA struct savefile_info sfcap, sfrestinfo, sfsaveinfo;
|
||||
|
||||
struct autopickup_exception {
|
||||
struct nhregex *regex;
|
||||
const char *pattern;
|
||||
char *pattern;
|
||||
boolean grab;
|
||||
struct autopickup_exception *next;
|
||||
};
|
||||
|
||||
@@ -199,9 +199,9 @@ bot1()
|
||||
mbot[k] += 'A' - 'a';
|
||||
k++;
|
||||
}
|
||||
Sprintf(nb = eos(nb), mbot);
|
||||
Strcpy(nb = eos(nb), mbot);
|
||||
} else
|
||||
Sprintf(nb = eos(nb), rank());
|
||||
Strcpy(nb = eos(nb), rank());
|
||||
|
||||
Sprintf(nb = eos(nb), " ");
|
||||
i = mrank_sz + 15;
|
||||
|
||||
@@ -59,7 +59,7 @@ const char *shout;
|
||||
pline("%s yells:", Amonnam(mon));
|
||||
else
|
||||
You_hear("someone yell:");
|
||||
verbalize(shout);
|
||||
verbalize1(shout);
|
||||
}
|
||||
|
||||
STATIC_OVL void
|
||||
|
||||
@@ -4554,7 +4554,7 @@ const char *mapping;
|
||||
free(ape);
|
||||
return 0;
|
||||
}
|
||||
ape->pattern = alloc(strlen(text2) + 1);
|
||||
ape->pattern = (char *)alloc(strlen(text2) + 1);
|
||||
strcpy(ape->pattern, text2);
|
||||
ape->grab = grab;
|
||||
ape->next = *apehead;
|
||||
|
||||
Reference in New Issue
Block a user