summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--py/misc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/misc.h b/py/misc.h
index 7350d2f9b..32061a009 100644
--- a/py/misc.h
+++ b/py/misc.h
@@ -179,7 +179,7 @@ typedef struct _vstr_t {
size_t alloc;
size_t len;
char *buf;
- bool fixed_buf : 1;
+ bool fixed_buf;
} vstr_t;
// convenience macro to declare a vstr with a fixed size buffer on the stack