mirror of
https://github.com/martijnvanbrummelen/nwipe.git
synced 2026-02-20 13:42:14 +00:00
Fixes uninitialized variable
This commit is contained in:
1
README
1
README
@@ -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
|
||||
|
||||
@@ -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 */
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user