some Microsoft compiler warnings

src/muse.c(2255) : warning C4702: unreachable code
src/options.c(2549) : warning C4702: unreachable code
src/restore.c(930) : warning C4701: potentially uninitialized local variable 'stway' used
src/sp_lev.c(5118) : warning C4701: potentially uninitialized local variable 'x' used
src/sp_lev.c(5118) : warning C4701: potentially uninitialized local variable 'y' used
src/trap.c(2979) : warning C4701: potentially uninitialized local variable 'cc' used
src/trap.c(2985) : warning C4701: potentially uninitialized local variable 'bcc' used
This commit is contained in:
nhmall
2021-01-17 22:58:52 -05:00
parent 3ef0f889e6
commit fb43299451
5 changed files with 5 additions and 5 deletions

View File

@@ -2931,8 +2931,8 @@ long ocount;
register int tmp;
schar dx, dy;
int distance;
coord cc;
coord bcc;
coord cc = UNDEFINED_VALUES,
bcc = UNDEFINED_VALUES;
int trycount = 0;
boolean success = FALSE;
int mindist = 4;