From 87913a4c338e32a2bae7e5ff51c87032c31f181d Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Wed, 9 Jul 2014 23:17:51 -0700 Subject: [PATCH] Add missing return statement --- src/util/crc32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/crc32.c b/src/util/crc32.c index fcca744d3..9282bd4e4 100644 --- a/src/util/crc32.c +++ b/src/util/crc32.c @@ -89,7 +89,7 @@ static uint32_t crc32Table[] = { }; uint32_t crc32(const void* buf, size_t size) { - updateCrc32(0, buf, size); + return updateCrc32(0, buf, size); } uint32_t updateCrc32(uint32_t crc, const void* buf, size_t size) {