aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/sph/md_helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/sph/md_helper.c')
-rw-r--r--libqpdf/sph/md_helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libqpdf/sph/md_helper.c b/libqpdf/sph/md_helper.c
index 5384f03f..829391a7 100644
--- a/libqpdf/sph/md_helper.c
+++ b/libqpdf/sph/md_helper.c
@@ -145,7 +145,7 @@ SPH_XCAT(sph_, HASH)(void *cc, const void *data, size_t len)
clen = SPH_BLEN - current;
if (clen > len)
- clen = len;
+ clen = (unsigned)len;
memcpy(sc->buf + current, data, clen);
data = (const unsigned char *)data + clen;
current += clen;
@@ -257,7 +257,7 @@ SPH_XCAT(HASH, _addbits_and_close)(void *cc,
{
unsigned z;
- z = 0x80 >> n;
+ z = 0x80U >> n;
sc->buf[current ++] = ((ub & -z) | z) & 0xFF;
}
#endif