From 330cb889525ef878dcf844e308e30c6227c57eff Mon Sep 17 00:00:00 2001 From: Jef Driesen Date: Fri, 7 Apr 2023 13:29:41 +0200 Subject: [PATCH] Use plain ascii text in the code comments --- src/shearwater_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shearwater_common.c b/src/shearwater_common.c index ca3f237..f27bc9a 100644 --- a/src/shearwater_common.c +++ b/src/shearwater_common.c @@ -93,7 +93,7 @@ shearwater_common_decompress_lre (unsigned char *data, unsigned int size, dc_buf // The 9th bit indicates whether the remaining 8 bits represent // a run of zero bytes or not. If the bit is set, the value is - // not a run and doesn’t need expansion. If the bit is not set, + // not a run and doesn't need expansion. If the bit is not set, // the value contains the number of zero bytes in the run. A // zero-length run indicates the end of the compressed stream. if (value & 0x100) {