aboutsummaryrefslogtreecommitdiff
path: root/gen/prop/gc
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-04-28 09:38:33 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-04-28 09:38:33 +0200
commitc81b789d32d280ce8c9c5da5022798619e8ee7a6 (patch)
treef585c915a25ae3a83e90c728f1886872bd51b749 /gen/prop/gc
parentb0a33e153973a1db86fe1d6aa2fbba53cee374a2 (diff)
Fix columns()
Diffstat (limited to 'gen/prop/gc')
-rwxr-xr-xgen/prop/gc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gen/prop/gc b/gen/prop/gc
index 4f95242..f37cb4b 100755
--- a/gen/prop/gc
+++ b/gen/prop/gc
@@ -40,7 +40,7 @@ def genfile(cs: list[tuple[bool, ...]], blksize: int) -> None:
print()
- ppc = columns(blksize)
+ ppc = columns(blksize, 6)
print(f'static constexpr enum uprop_gc stage2[][{blksize}] = {{')
for c in cs:
for i in range(blksize // ppc):