summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-29 23:00:48 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-29 23:00:48 +0100
commitda9f27103d77268f4c0bb910a584aa8fd6f1b308 (patch)
tree0c3f9ef833428627627a6c2fc6997d70b3566bc3
parent8d09640b22714fa9c66a5a7bbf9ab59a6a0c710d (diff)
downloadmicropython-da9f27103d77268f4c0bb910a584aa8fd6f1b308.tar.gz
micropython-da9f27103d77268f4c0bb910a584aa8fd6f1b308.zip
stmhal: Oops, typo.
-rw-r--r--stmhal/extint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/extint.c b/stmhal/extint.c
index 346e2851ee..61469e0a17 100644
--- a/stmhal/extint.c
+++ b/stmhal/extint.c
@@ -204,7 +204,7 @@ STATIC mp_obj_t extint_obj_line(mp_obj_t self_in) {
extint_obj_t *self = self_in;
return MP_OBJ_NEW_SMALL_INT(self->line);
}
-STATIC MP_DEFINE_CONST_FUN_OBJ_1(extint_obj_line_obj,i extint_obj_line);
+STATIC MP_DEFINE_CONST_FUN_OBJ_1(extint_obj_line_obj, extint_obj_line);
/// \method enable()
/// Enable a disabled interrupt.