summaryrefslogtreecommitdiff
path: root/testapp.c
diff options
context:
space:
mode:
Diffstat (limited to 'testapp.c')
-rw-r--r--testapp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp.c b/testapp.c
index 47cb103..390f175 100644
--- a/testapp.c
+++ b/testapp.c
@@ -906,7 +906,7 @@ static enum test_return test_crc32c(void) {
for (int x = 0; x < 256; x++)
buffer[x] = x;
- /* Compare harware to software implementaiton */
+ /* Compare hardware to software implementation */
crc_hw = crc32c(0, buffer, 256);
crc_sw = crc32c_sw(0, buffer, 256);
assert(crc_hw == 0x9c44184b);