Merge pull request #388 from PartialVolume/Fix_second_occurence_of_incorrect_specifier

Fix 2nd occurrence of incorrect format specifier.
This commit is contained in:
PartialVolume
2021-12-01 19:45:20 +00:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -456,7 +456,7 @@ int main( int argc, char** argv )
else
{
nwipe_log( NWIPE_LOG_NOTICE,
"%s, sect/blk/dev %llu/%i/%llu",
"%s, sect/blk/dev %i/%i/%llu",
c2[i]->device_name,
c2[i]->device_sector_size,
c2[i]->device_block_size,

View File

@@ -4,7 +4,7 @@
* used by configure to dynamically assign those values
* to documentation files.
*/
const char* version_string = "0.32.015";
const char* version_string = "0.32.016";
const char* program_name = "nwipe";
const char* author_name = "Martijn van Brummelen";
const char* email_address = "git@brumit.nl";
@@ -14,4 +14,4 @@ Modifications to original dwipe Copyright Andy Beverley <andy@andybev.com>\n\
This is free software; see the source for copying conditions.\n\
There is NO warranty; not even for MERCHANTABILITY or FITNESS\n\
FOR A PARTICULAR PURPOSE.\n";
const char* banner = "nwipe 0.32.015";
const char* banner = "nwipe 0.32.016";