Use puts instead of printf
This commit is contained in:
parent
f7c0f82cee
commit
24e83aa312
|
@ -117,7 +117,7 @@ int main(int argc, char **argv)
|
|||
|
||||
if (passphrase_dialog(&passphrase, message))
|
||||
{
|
||||
printf("%s\n", passphrase);
|
||||
puts(passphrase);
|
||||
memset(passphrase, '\0', strlen(passphrase));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue