From 5b81a4819a249921085f6596927f9939dffc46e7 Mon Sep 17 00:00:00 2001 From: CircleShift Date: Fri, 5 Dec 2025 01:03:25 -0500 Subject: [tnslc] Fix pointer issue with find func --- tnslc/compile/var.tnsl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tnslc/compile/var.tnsl') diff --git a/tnslc/compile/var.tnsl b/tnslc/compile/var.tnsl index c26d227..df62d66 100644 --- a/tnslc/compile/var.tnsl +++ b/tnslc/compile/var.tnsl @@ -190,8 +190,8 @@ struct Var { ;; else t = _tn`.sub.get(idx) /; if (t`._type == parse.NTYPE_ID) - ~void str = t`.data - strv.push(str) + ~uint8 str = t`.data + strv.push(~str) ;; else running = false ;/ -- cgit v1.2.3