fixed deallocateDecryptedOutput's bad variable type
This commit is contained in:
parent
91435a29c8
commit
3b7622b846
@ -37,7 +37,7 @@ void deallocateLogger(logFile logger)
|
||||
|
||||
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]);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user