Skip to content

Commit

Permalink
Merge pull request martijnvanbrummelen#534 from PartialVolume/Fix_spa…
Browse files Browse the repository at this point in the history
…cing_between_temperature_and_model

Place a space between temperature and model
  • Loading branch information
PartialVolume authored Nov 29, 2023
2 parents 32321f4 + 1220eca commit fd6cca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down

0 comments on commit fd6cca7

Please sign in to comment.