From c50772d19fe2804a6d0258f89dd9967d3b516fd3 Mon Sep 17 00:00:00 2001 From: Damien George Date: Tue, 12 May 2015 23:05:53 +0100 Subject: py: Add mp_obj_get_int_truncated and use it where appropriate. mp_obj_get_int_truncated will raise a TypeError if the argument is not an integral type. Use mp_obj_int_get_truncated only when you know the argument is a small or big int. --- stmhal/modusocket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stmhal/modusocket.c') diff --git a/stmhal/modusocket.c b/stmhal/modusocket.c index 4ef614e4c..402378a38 100644 --- a/stmhal/modusocket.c +++ b/stmhal/modusocket.c @@ -287,7 +287,7 @@ STATIC mp_obj_t socket_setsockopt(mp_uint_t n_args, const mp_obj_t *args) { mp_uint_t optlen; mp_int_t val; if (mp_obj_is_integer(args[3])) { - val = mp_obj_int_get_truncated(args[3]); + val = mp_obj_get_int_truncated(args[3]); optval = &val; optlen = sizeof(val); } else { -- cgit v1.2.3