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 /extmod/moduhashlib.c | |
parent | 50912e7f5dc579fd2917537046793dfa30decadf (diff) | |
download | micropython-ff8dd3f486afb0d6ff1427d8a6a8a8ed73baa660.tar.gz micropython-ff8dd3f486afb0d6ff1427d8a6a8a8ed73baa660.zip |
py, unix: Allow to compile with -Wunused-parameter.
See issue #699.
Diffstat (limited to 'extmod/moduhashlib.c')
-rw-r--r-- | extmod/moduhashlib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extmod/moduhashlib.c b/extmod/moduhashlib.c index d4d05c3e95..40a0f06094 100644 --- a/extmod/moduhashlib.c +++ b/extmod/moduhashlib.c @@ -71,6 +71,7 @@ STATIC mp_obj_t hash_digest(mp_obj_t self_in) { MP_DEFINE_CONST_FUN_OBJ_1(hash_digest_obj, hash_digest); STATIC mp_obj_t hash_hexdigest(mp_obj_t self_in) { + (void)self_in; mp_not_implemented(""); #if 0 mp_obj_hash_t *self = self_in; |