Adds an extra `static` for consistency.

This commit is contained in:
Thomas Harte 2018-06-05 22:06:35 -04:00
parent ce31f21fd3
commit 0dca2116ef
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ static const uint32_t crc32_tab[] = {
@param size The size of the data to compute a CRC32 from.
@return The computed CRC32.
*/
uint32_t crc32(const uint8_t *buf, size_t size) {
static uint32_t crc32(const uint8_t *buf, size_t size) {
uint32_t crc = ~0;
size_t byte = 0;
while (size--) {