From 4b72b3a133ea87a1ef8b964508dc25c551ccf093 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 3 Jan 2016 14:21:40 +0000 Subject: py: Change type signature of builtin funs that take variable or kw args. With this patch the n_args parameter is changed type from mp_uint_t to size_t. --- extmod/modubinascii.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extmod/modubinascii.c') diff --git a/extmod/modubinascii.c b/extmod/modubinascii.c index 12cd26687..82f910b0e 100644 --- a/extmod/modubinascii.c +++ b/extmod/modubinascii.c @@ -34,7 +34,7 @@ #include "modubinascii.h" -mp_obj_t mod_binascii_hexlify(mp_uint_t n_args, const mp_obj_t *args) { +mp_obj_t mod_binascii_hexlify(size_t n_args, const mp_obj_t *args) { // Second argument is for an extension to allow a separator to be used // between values. const char *sep = NULL; -- cgit v1.2.3