Commit fdd78e8e authored by Geoff Simmons's avatar Geoff Simmons

fix an error revealed by compiling with clang

parent a4e1f05b
...@@ -158,7 +158,7 @@ final(const enum algorithm hash, hash_ctx *restrict const hctx, ...@@ -158,7 +158,7 @@ final(const enum algorithm hash, hash_ctx *restrict const hctx,
static inline void static inline void
digest(const enum algorithm hash, hash_ctx *restrict const hctx, digest(const enum algorithm hash, hash_ctx *restrict const hctx,
const VCL_BLOB restrict const b, uint8_t *restrict digest) VCL_BLOB restrict const b, uint8_t *restrict digest)
{ {
init(hash, hctx); init(hash, hctx);
update(hash, hctx, b->priv, b->len); update(hash, hctx, b->priv, b->len);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment