diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-20 12:47:20 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-20 12:47:20 +0000 |
commit | ff8dd3f486afb0d6ff1427d8a6a8a8ed73baa660 (patch) | |
tree | 16b54a843a312757976e15f24f413e00e151fbe2 /py/objmodule.c | |
parent | 50912e7f5dc579fd2917537046793dfa30decadf (diff) |
py, unix: Allow to compile with -Wunused-parameter.
See issue #699.
Diffstat (limited to 'py/objmodule.c')
-rw-r--r-- | py/objmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/objmodule.c b/py/objmodule.c index d1d2293a2..0e806a705 100644 --- a/py/objmodule.c +++ b/py/objmodule.c @@ -34,6 +34,7 @@ #include "py/builtin.h" STATIC void module_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { + (void)kind; mp_obj_module_t *self = self_in; const char *name = qstr_str(self->name); |