From: Bart House Date: Tue, 20 Nov 2018 18:46:45 +0000 (-0800) Subject: Addressed compiler warnings. X-Git-Tag: nmake-explicit-path~152^2~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d177b5e7057903adbb3a2078a3e8e7c3fc932932;p=nethack Addressed compiler warnings. Fixed declarations of draw_classic, draw_vertical and draw_horizontal. Moved definitions of locals before code. Added initialization of locals. Changed comments to c-style. --- diff --git a/win/curses/cursstat.c b/win/curses/cursstat.c index ab3ca0ca5..2f95e5660 100644 --- a/win/curses/cursstat.c +++ b/win/curses/cursstat.c @@ -31,9 +31,9 @@ static int FDECL(condcolor, (long, unsigned long *)); static int FDECL(condattr, (long, unsigned long *)); #endif /* STATUS_HILITES */ static void FDECL(draw_status, (unsigned long *)); -static void FDECL(draw_classic, (boolean, unsigned long *)); -static void FDECL(draw_vertical, (boolean, unsigned long *)); -static void FDECL(draw_horizontal, (boolean, unsigned long *)); +static void FDECL(draw_classic, (BOOLEAN_P, unsigned long *)); +static void FDECL(draw_vertical, (BOOLEAN_P, unsigned long *)); +static void FDECL(draw_horizontal, (BOOLEAN_P, unsigned long *)); void curses_status_init() @@ -246,14 +246,15 @@ unsigned long *colormasks; /* Figure out if we have proper window dimensions for horizontal statusbar. */ if (horiz) { + int ax = 0; + int ay = 0; + /* correct y */ int cy = 3; if (iflags.statuslines < 3) cy = 2; /* actual y (and x) */ - int ax = 0; - int ay = 0; getmaxyx(win, ay, ax); if (border) ay -= 2; @@ -339,7 +340,7 @@ unsigned long *colormasks; /* hitpointbar using hp percent calculation */ int bar_pos, bar_len; char *bar2 = (char *)0; - char bar[MAXCO], savedch; + char bar[MAXCO], savedch = 0; boolean twoparts = FALSE; text = status_vals[fldidx1]; @@ -536,7 +537,7 @@ unsigned long *colormasks; /* hitpointbar using hp percent calculation */ int bar_pos, bar_len; char *bar2 = (char *)0; - char bar[MAXCO], savedch; + char bar[MAXCO], savedch = 0; boolean twoparts = FALSE; int height,width; @@ -642,7 +643,7 @@ unsigned long *bmarray; } #endif /* STATUS_HILITES */ -#if 0 //old stuff to be re-incorporated +#if 0 /* old stuff to be re-incorporated */ /* Private declarations */ /* Used to track previous value of things, to highlight changes. */