fix some compiler warnings windows cmdline

Changes to be committed:
	modified:   src/hack.c
	modified:   src/vision.c
This commit is contained in:
nhmall
2015-03-29 20:07:41 -04:00
parent 2a9c913c1c
commit 5a90f5f366
2 changed files with 6 additions and 6 deletions

View File

@@ -1104,7 +1104,7 @@ domove()
register struct monst *mtmp;
register struct rm *tmpr;
register xchar x,y;
struct trap *trap;
struct trap *trap = (struct trap *)0;
int wtcap;
boolean on_ice;
xchar chainx, chainy, ballx, bally; /* ball&chain new positions */

View File

@@ -2198,9 +2198,9 @@ right_side(row, left, right_mark, limits)
int deeper; /* if TRUE, call self as needed */
int result; /* set by q?_path() */
register int i; /* loop counter */
register char *rowp; /* row optimization */
char *row_min; /* left most [used by macro set_min()] */
char *row_max; /* right most [used by macro set_max()] */
register char *rowp = NULL; /* row optimization */
char *row_min = NULL; /* left most [used by macro set_min()] */
char *row_max = NULL; /* right most [used by macro set_max()] */
int lim_max; /* right most limit of circle */
#ifdef GCC_WARN
@@ -2374,8 +2374,8 @@ left_side(row, left_mark, right, limits)
{
int left, left_edge, nrow, deeper, result;
register int i;
register char *rowp;
char *row_min, *row_max;
register char *rowp = NULL;
char *row_min = NULL, *row_max = NULL;
int lim_min;
#ifdef GCC_WARN