Don't store int into unsigned

This commit is contained in:
Pasi Kallinen
2018-03-30 20:34:19 +03:00
parent 2548d68dd3
commit 4eab7b140c

View File

@@ -3040,7 +3040,8 @@ struct monst *mon;
int shiftflags;
{
struct permonst *ptr = 0;
unsigned mndx, was_female = mon->female;
int mndx;
unsigned was_female = mon->female;
boolean msg = FALSE, dochng = FALSE;
if ((shiftflags & SHIFT_MSG)