From 107164acac10836f1b9dfaeacf8d0c6f13333c59 Mon Sep 17 00:00:00 2001 From: Luxferre Date: Mon, 19 Sep 2022 22:37:25 +0300 Subject: [PATCH] another typofix --- equi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/equi.c b/equi.c index 08bd4f6..811303a 100644 --- a/equi.c +++ b/equi.c @@ -334,7 +334,7 @@ uchar a2d(uchar a) { return (a < 0x3aU) ? (a - 0x30U) : (a - 55U); } -/* shape 2-byte vlaue on the main stack from up to 4 values of the literal stack */ +/* shape 2-byte value on the main stack from up to 4 values of the literal stack */ void pushLitVal() { uchar p[4U] = {0,0,0,0}, i, thr = 4U; if(curtask->lsp < 4U) thr = curtask->lsp;