Fixes uninitialized variable

This commit is contained in:
Martijn van Brummelen
2018-10-05 23:23:16 +02:00
parent e92ac3a870
commit 81850bde42
2 changed files with 4 additions and 2 deletions

1
README
View File

@@ -25,6 +25,7 @@ v0.25
- Check right pointer (Thanks PartialVolume)
- Fix casting problem (Thanks PartialVolume)
- Fix serial number
- Fixes uninitialized variable warning ( Thanks PartialVolume)
v0.24
- use include values for version 0.17

View File

@@ -1257,7 +1257,7 @@ void nwipe_gui_noblank( void )
nwipe_gui_title( footer_window, nwipe_buttons2 );
wrefresh( footer_window );
while( keystroke != ERR )
do
{
/* Clear the main window. */
werase( main_window );
@@ -1339,8 +1339,9 @@ void nwipe_gui_noblank( void )
} /* switch */
} /* while */
}
while( keystroke != ERR );
} /* nwipe_gui_noblank */