add new line after print Wrong password

This commit is contained in:
Nikola Petrov 2024-05-01 15:16:20 +02:00
parent 19b87be18d
commit ae83eae33d

View File

@ -94,7 +94,7 @@ int main(int argc, char **argv)
// check for magic num to see if file is decrypted correcly
if (std::memcmp(decrypted_buffer.buffer, ".bin", 4))
{
printf("Worong password!!");
printf("Wrong password!!\n");
return 1;
}