From 159666bae6cc185a5abac154b85c49406f32f30c Mon Sep 17 00:00:00 2001 From: Nakidai Date: Sun, 23 Mar 2025 20:56:47 +0300 Subject: Last time I was here 8 months ago, idk what is this --- src/readchar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/readchar.c') diff --git a/src/readchar.c b/src/readchar.c index 51e1784..428b8fd 100644 --- a/src/readchar.c +++ b/src/readchar.c @@ -17,7 +17,7 @@ char ccl_readchar(struct CCL *ccl, struct CCLFrame *frame, enum CCLRCFlags flags bool iscomment; char chr; - for (;(chr = ccl->code[frame->ep]) != '\0'; ++frame->ep) + while ((chr = ccl->code[frame->ep++]) != '\0') { if (iscomment && chr == '\n') iscomment = false; -- cgit 1.4.1