another typofix

This commit is contained in:
Luxferre
2022-09-19 22:37:25 +03:00
parent 8a17ea5edf
commit 107164acac
+1 -1
View File
@@ -334,7 +334,7 @@ uchar a2d(uchar a) {
return (a < 0x3aU) ? (a - 0x30U) : (a - 55U); 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() { void pushLitVal() {
uchar p[4U] = {0,0,0,0}, i, thr = 4U; uchar p[4U] = {0,0,0,0}, i, thr = 4U;
if(curtask->lsp < 4U) thr = curtask->lsp; if(curtask->lsp < 4U) thr = curtask->lsp;