From 0dca2116efcd0b3dc53359be8a57dc08f75424a9 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 5 Jun 2018 22:06:35 -0400 Subject: [PATCH] Adds an extra `static` for consistency. --- dsk2woz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsk2woz.c b/dsk2woz.c index 8856614..1d5f43f 100644 --- a/dsk2woz.c +++ b/dsk2woz.c @@ -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--) {