summaryrefslogtreecommitdiff
path: root/tnslc/utils/algo.tnsl
diff options
context:
space:
mode:
authorKai Gunger <kgunger12@gmail.com>2025-12-04 00:07:37 -0500
committerKai Gunger <kgunger12@gmail.com>2025-12-04 00:07:37 -0500
commite62d448e244b23b2c589ac01f01c4f15a8b302c1 (patch)
tree516a3ff025c42ddb3f1859c14c2b5c6f4500b1bc /tnslc/utils/algo.tnsl
parent1c2cd72c064fffa340405e77d543c58b4aed8b24 (diff)
[tnslc] Scope label generatorsorigin
Diffstat (limited to 'tnslc/utils/algo.tnsl')
-rw-r--r--tnslc/utils/algo.tnsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tnslc/utils/algo.tnsl b/tnslc/utils/algo.tnsl
index 35ac35c..49c4636 100644
--- a/tnslc/utils/algo.tnsl
+++ b/tnslc/utils/algo.tnsl
@@ -150,7 +150,7 @@
/; loop (i > 0) [i = i / 16]
int n = i % 16
/; if (n > 9)
- out.push_char('a' + n - 10)
+ out.push_char('A' + n - 10)
;; else
out.push_char('0' + n)
;/