From b3f738a20476af60a2f65c2b7ab56a1a4930176c Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 25 Dec 2021 22:47:46 -0500 Subject: [PATCH] spelling: mismatch Signed-off-by: Josh Soref --- qoibench.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qoibench.c b/qoibench.c index f5224ea5..2c3df68d 100644 --- a/qoibench.c +++ b/qoibench.c @@ -440,7 +440,7 @@ benchmark_result_t benchmark_image(const char *path) { qoi_desc dc; void *pixels_qoi = qoi_decode(encoded_qoi, encoded_qoi_size, &dc, channels); if (memcmp(pixels, pixels_qoi, w * h * channels) != 0) { - ERROR("QOI roundtrip pixel missmatch for %s", path); + ERROR("QOI roundtrip pixel mismatch for %s", path); } free(pixels_qoi); }