aboutsummaryrefslogtreecommitdiff
path: root/py/qstr.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-06-11 19:18:03 +0100
committerDamien George <damien.p.george@gmail.com>2014-06-11 19:18:03 +0100
commit73c98d87092910b04bb026e0da69ac4f390c62e3 (patch)
treef65d604af4e25db33e41a5c9c94e140b36c49961 /py/qstr.c
parent0c0f4468407ea9397d1e7e5d1d2d18acf1d07548 (diff)
py: Fix static defn in qstr; include mpconfigport.h with "" (not <>).
Diffstat (limited to 'py/qstr.c')
-rw-r--r--py/qstr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/qstr.c b/py/qstr.c
index a1ee7cafd..7ccb34f1c 100644
--- a/py/qstr.c
+++ b/py/qstr.c
@@ -77,7 +77,7 @@ typedef struct _qstr_pool_t {
const byte *qstrs[];
} qstr_pool_t;
-const static qstr_pool_t const_pool = {
+STATIC const qstr_pool_t const_pool = {
NULL, // no previous pool
0, // no previous pool
10, // set so that the first dynamically allocated pool is twice this size; must be <= the len (just below)