Merge pull request #83 from PartialVolume/warning_variable_wy_set_but_not_used_in_nwipe_gui_title

(void) unused wy, to silence compiler warning
This commit is contained in:
Martijn van Brummelen
2018-11-25 20:52:16 +01:00
committed by GitHub

View File

@@ -139,6 +139,7 @@ void nwipe_gui_title( WINDOW* w, const char* s )
/* The number of lines in the window. (Not used.) */
int wy;
(void) wy; /* flag wy not used to the compiler, to silence warning */
/* The number of columns in the window. */
int wx;