diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-26 10:47:29 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-26 10:47:29 +0100 |
commit | 6d3c5e4301df363055dc256e6692c610e4d0b918 (patch) | |
tree | a07a18ed1a13d50990cf0e43a2a3c919cb14240d /unix | |
parent | d139c489bab6b58906868e3fc8383ea813a122d4 (diff) | |
download | micropython-6d3c5e4301df363055dc256e6692c610e4d0b918.tar.gz micropython-6d3c5e4301df363055dc256e6692c610e4d0b918.zip |
Add ARRAY_SIZE macro, and use it where possible.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/modffi.c | 4 | ||||
-rw-r--r-- | unix/modsocket.c | 4 | ||||
-rw-r--r-- | unix/modtime.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/unix/modffi.c b/unix/modffi.c index 56ea6ed307..be542625ed 100644 --- a/unix/modffi.c +++ b/unix/modffi.c @@ -394,8 +394,8 @@ STATIC const mp_obj_dict_t mp_module_ffi_globals = { .map = { .all_keys_are_qstrs = 1, .table_is_fixed_array = 1, - .used = sizeof(mp_module_ffi_globals_table) / sizeof(mp_map_elem_t), - .alloc = sizeof(mp_module_ffi_globals_table) / sizeof(mp_map_elem_t), + .used = ARRAY_SIZE(mp_module_ffi_globals_table), + .alloc = ARRAY_SIZE(mp_module_ffi_globals_table), .table = (mp_map_elem_t*)mp_module_ffi_globals_table, }, }; diff --git a/unix/modsocket.c b/unix/modsocket.c index 4c76502da6..e52f5d92a9 100644 --- a/unix/modsocket.c +++ b/unix/modsocket.c @@ -378,8 +378,8 @@ STATIC const mp_obj_dict_t mp_module_socket_globals = { .map = { .all_keys_are_qstrs = 1, .table_is_fixed_array = 1, - .used = sizeof(mp_module_socket_globals_table) / sizeof(mp_map_elem_t), - .alloc = sizeof(mp_module_socket_globals_table) / sizeof(mp_map_elem_t), + .used = ARRAY_SIZE(mp_module_socket_globals_table), + .alloc = ARRAY_SIZE(mp_module_socket_globals_table), .table = (mp_map_elem_t*)mp_module_socket_globals_table, }, }; diff --git a/unix/modtime.c b/unix/modtime.c index a0d7cd0462..d8ca0e4ef5 100644 --- a/unix/modtime.c +++ b/unix/modtime.c @@ -63,8 +63,8 @@ STATIC const mp_obj_dict_t mp_module_time_globals = { .map = { .all_keys_are_qstrs = 1, .table_is_fixed_array = 1, - .used = sizeof(mp_module_time_globals_table) / sizeof(mp_map_elem_t), - .alloc = sizeof(mp_module_time_globals_table) / sizeof(mp_map_elem_t), + .used = ARRAY_SIZE(mp_module_time_globals_table), + .alloc = ARRAY_SIZE(mp_module_time_globals_table), .table = (mp_map_elem_t*)mp_module_time_globals_table, }, }; |