all repos — mgba @ 87913a4c338e32a2bae7e5ff51c87032c31f181d

mGBA Game Boy Advance Emulator

Add missing return statement
Jeffrey Pfau jeffrey@endrift.com
Wed, 09 Jul 2014 23:17:51 -0700
commit

87913a4c338e32a2bae7e5ff51c87032c31f181d

parent

642cbf3429142af0407e8b4aaff7022db4c78620

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/util/crc32.csrc/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) {