clear five warnings for "set but not used" variables

Note: the line numbers referenced in the warning messages below are not in sync
with the NetHack-3.7 branch and should be disregarded

files.c: In function 'get_saved_games':
files.c:1168:9: warning: unused variable 'n' [-Wunused-variable]
 1168 |     int n, j = 0;
      |         ^

mhitm.c: In function 'mdamagem':
mhitm.c:843:13: warning: variable 'cancelled' set but not used [-Wunused-but-set-variable]
  843 |     boolean cancelled;
      |             ^~~~~~~~~

mhitu.c: In function 'hitmu':
mhitu.c:943:9: warning: variable 'uncancelled' set but not used [-Wunused-but-set-variable]
  943 |     int uncancelled;
      |         ^~~~~~~~~~~

mklev.c: In function 'place_branch':
mklev.c:1214:20: warning: variable 'br_room' set but not used [-Wunused-but-set-variable]
 1214 |     struct mkroom *br_room;
      |                    ^~~~~~~

monmove.c: In function 'm_move':
monmove.c:874:43: warning: variable 'doorbuster' set but not used [-Wunused-but-set-variable]
  874 |     boolean can_open = 0, can_unlock = 0, doorbuster = 0;
      |                                           ^~~~~~~~~~
This commit is contained in:
nhmall
2021-01-25 12:57:47 -05:00
parent 8a965b8cf9
commit 62f25fd000
5 changed files with 17 additions and 11 deletions
+3 -2
View File
@@ -964,7 +964,7 @@ register struct monst *mtmp;
register struct attack *mattk;
{
struct permonst *mdat = mtmp->data;
int uncancelled;
/* int uncancelled; */
int armpro;
struct permonst *olduasmon = g.youmonst.data;
int res;
@@ -1010,7 +1010,8 @@ register struct attack *mattk;
* armor's special magic protection. Otherwise just use !mtmp->mcan.
*/
armpro = magic_negation(&g.youmonst);
uncancelled = !mtmp->mcan && (rn2(10) >= 3 * armpro);
/* this was moved downstream during a 2020 refactor */
/* uncancelled = !mtmp->mcan && (rn2(10) >= 3 * armpro); */
mhitm_adtyping(mtmp, mattk, &g.youmonst, &mhm);
if (mhm.done)