mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-08-29 07:12:02 +02:00
Clean up some compiler warnings.
This commit is contained in:
@@ -241,7 +241,7 @@ _pdfioCryptoAESEncrypt(
|
||||
if (len > 0)
|
||||
{
|
||||
// Pad the final buffer with (16 - len)...
|
||||
memset(outbuffer + len, 16 - len, 16 - len);
|
||||
memset(outbuffer + len, (int)(16 - len), 16 - len);
|
||||
|
||||
xor_with_iv(outbuffer, iv);
|
||||
cipher((state_t*)outbuffer, ctx);
|
||||
|
Reference in New Issue
Block a user