fixed deallocateDecryptedOutput's bad variable type

This commit is contained in:
Václav Šmejkal 2023-01-25 14:18:53 +01:00
parent 91435a29c8
commit 3b7622b846
Signed by: ENGO150
GPG Key ID: F6D6DF86242C5A59

View File

@ -37,7 +37,7 @@ void deallocateLogger(logFile logger)
void deallocateDecryptedOutput(decryptedOutput output) void deallocateDecryptedOutput(decryptedOutput output)
{ {
for (int i = 0; i < output.length; i++) for (unsigned long i = 0; i < output.length; i++)
{ {
free(output.decryptedText[i]); free(output.decryptedText[i]);
} }