aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-12-19 17:56:03 +0100
committerlemon <lsof@mailbox.org>2025-12-19 17:56:03 +0100
commit0b62a35ad498885bfbeba273ccc132ae8f776789 (patch)
treeaf7a525385bb340a82c5d11ee65377b865a25203
parentae62e89274f20cc0e3d526dfc613038d96820e1f (diff)
c.h init zero bitset portability
-rw-r--r--c/c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/c.h b/c/c.h
index 9000496..787db5d 100644
--- a/c/c.h
+++ b/c/c.h
@@ -51,7 +51,7 @@ struct expr {
};
struct init {
- struct bitset zero[1]; /* bytes to zero out up to 64 */
+ struct bitset zero[BSSIZE(64)]; /* bytes to zero out up to 64 */
struct initval {
struct initval *next;
uint off;