Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
augustss committed Sep 1, 2024
1 parent 5a2593d commit f94adb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -2322,7 +2322,7 @@ addForPtr(struct forptr *ofp, int s)
memerr();
fp->next = ofp;
fin->back = fp;
if (fp->payload.size != NOSIZE)
if (ofp->payload.size != NOSIZE)
fp->payload.size = ofp->payload.size - s;
fp->payload.string = (uint8_t*)ofp->payload.string + s;
fp->finalizer = fin;
Expand Down

0 comments on commit f94adb9

Please sign in to comment.