From e5c9d5d74fed43e1b398ea8dd67cf509209cf02d Mon Sep 17 00:00:00 2001 From: nolan Date: Fri, 19 Sep 2025 23:53:09 -0400 Subject: [PATCH] Fixed typo in seekBuffer --- binaryEditor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binaryEditor.c b/binaryEditor.c index 0277063..9137774 100644 --- a/binaryEditor.c +++ b/binaryEditor.c @@ -31,7 +31,7 @@ void seekBuffer(Buffer buffer, unsigned int position){ break; case BUF_OUT: outByteOffset = position - (position % 8); - inBitOffset = position % 8; + outBitOffset = position % 8; break; } }