Add missing return statement

This commit is contained in:
Jeffrey Pfau 2014-07-09 23:17:51 -07:00
parent 642cbf3429
commit 87913a4c33
1 changed files with 1 additions and 1 deletions

View File

@ -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) {