Skip to content
Snippets Groups Projects
Commit 468656b4 authored by Francois Perrad's avatar Francois Perrad
Browse files

fix format

Argument no. 3 nominally inconsistent with format (int vs. unsigned int)
parent a5ec3aca
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -241,7 +241,7 @@ int main(int argc, char ** argv) {
}
 
genbits = signkey_generate_get_bits(keytype, bits);
fprintf(stderr, "Generating %d bit %s key, this may take a while...\n", genbits, typetext);
fprintf(stderr, "Generating %u bit %s key, this may take a while...\n", genbits, typetext);
if (signkey_generate(keytype, bits, filename, 0) == DROPBEAR_FAILURE)
{
dropbear_exit("Failed to generate key.\n");
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment