Merge pull request #534 from PartialVolume/Fix_spacing_between_temperature_and_model

Place a space between temperature and model
This commit is contained in:
PartialVolume
2023-11-29 22:23:44 +00:00
committed by GitHub

View File

@@ -6415,7 +6415,7 @@ void* nwipe_gui_status( void* ptr )
c[i]->device_type_str,
c[i]->device_size_text );
wprintw_temperature( c[i] );
wprintw( main_window, "%s/%s", c[i]->device_model, c[i]->device_serial_no );
wprintw( main_window, " %s/%s", c[i]->device_model, c[i]->device_serial_no );
/* Check whether the child process is still running the wipe. */
if( c[i]->wipe_status == 1 )