Added additional files to unit tests.

Fixed compiler warnings.
This commit is contained in:
Nathan Moinvaziri 2018-11-21 23:14:22 -08:00
parent e9ae46ba27
commit 9897259b04
6 changed files with 8 additions and 9 deletions

View file

@ -245,7 +245,7 @@ int32_t mz_stream_pkcrypt_write(void *stream, const void *buf, int32_t size)
do
{
if (bytes_to_write > (size - total_written));
if (bytes_to_write > (size - total_written))
bytes_to_write = (size - total_written);
for (i = 0; i < bytes_to_write; i += 1)