diff --git a/src/lib/commands/xdump.c b/src/lib/commands/xdump.c index 199e99e4..09290e83 100644 --- a/src/lib/commands/xdump.c +++ b/src/lib/commands/xdump.c @@ -271,7 +271,6 @@ xdvisible(int type, void *p) static int xditem(int type, char *arg) { - int check_owner = !player->god && (ef_flags(type) & EFF_OWNER) != 0; struct castr *ca; struct nstr_item ni; int n; diff --git a/src/lib/gen/numstr.c b/src/lib/gen/numstr.c index 97aea916..1f74f1a2 100644 --- a/src/lib/gen/numstr.c +++ b/src/lib/gen/numstr.c @@ -48,9 +48,7 @@ numstr(char *buf, int n) }; static char *tennames[] = { "", "", "twenty", "thirty", "forty", "fifty", - "sixty", "seventy", "eighty", "ninety", - "hundred", "hundred ten", "hundred twenty", - "hundred thirty", 0, + "sixty", "seventy", "eighty", "ninety", "hundred" }; if (n > 100) { diff --git a/src/lib/subs/bigmap.c b/src/lib/subs/bigmap.c index 4c521186..f972b3fe 100644 --- a/src/lib/subs/bigmap.c +++ b/src/lib/subs/bigmap.c @@ -66,7 +66,6 @@ static int do_map_set(char *map, coord x, coord y, char t, int force) { int id; - char ot; if ((id = sctoff(x, y)) < 0) return 0; @@ -74,7 +73,6 @@ do_map_set(char *map, coord x, coord y, char t, int force) if (((map[id] == 'x') || (map[id] == 'X')) && !force) return 0; - ot = map[id]; if (t == '?') { switch (map[id]) { case '.':