Add missing return statement
Jeffrey Pfau jeffrey@endrift.com
Wed, 09 Jul 2014 23:17:51 -0700
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
src/util/crc32.c
→
src/util/crc32.c
@@ -89,7 +89,7 @@ 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d
}; 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) {