Fix for windows

This commit is contained in:
Nikola Petrov
2024-07-19 01:49:34 +02:00
parent 65e30edb8f
commit e0af8874c0
3 changed files with 18 additions and 27 deletions

View File

@@ -357,5 +357,5 @@ void arg_file(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *la
void arg_size(Buffer &encrypted_buffer)
{
printf("File size is: %ldB\n", encrypted_buffer.taken);
printf("File size is: %zuB\n", encrypted_buffer.taken);
}