summaryrefslogtreecommitdiffstatshomepage
path: root/py/parse.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-07-03 14:13:33 +0100
committerDamien George <damien.p.george@gmail.com>2014-07-03 14:13:33 +0100
commit381618269a9eb3e49d0e42d389d2dec312907577 (patch)
tree0e8d3fbaa5f4f8c743dc33e15f85b4bdfb7fc6cc /py/parse.h
parent54eb4e723e2a3e990791da4acc816574efdebde6 (diff)
downloadmicropython-381618269a9eb3e49d0e42d389d2dec312907577.tar.gz
micropython-381618269a9eb3e49d0e42d389d2dec312907577.zip
parser: Convert (u)int to mp_(u)int_t.
Diffstat (limited to 'py/parse.h')
-rw-r--r--py/parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/parse.h b/py/parse.h
index 782d7d483c..f8c1d5718b 100644
--- a/py/parse.h
+++ b/py/parse.h
@@ -77,7 +77,7 @@ typedef struct _mp_parse_node_struct_t {
mp_parse_node_t mp_parse_node_new_leaf(mp_int_t kind, mp_int_t arg);
void mp_parse_node_free(mp_parse_node_t pn);
-void mp_parse_node_print(mp_parse_node_t pn, int indent);
+void mp_parse_node_print(mp_parse_node_t pn, mp_uint_t indent);
typedef enum {
MP_PARSE_SINGLE_INPUT,