all: Remove spaces between nested paren and inside function arg paren.

Using new options enabled in the uncrustify configuration.
This commit is contained in:
Damien George
2020-03-20 21:47:07 +11:00
parent f62cc41fac
commit feb2577585
11 changed files with 38 additions and 38 deletions

View File

@@ -156,7 +156,7 @@ STATIC mp_obj_t machine_rtc_memory(mp_uint_t n_args, const mp_obj_t *args) {
if (bufinfo.len > MICROPY_HW_RTC_USER_MEM_MAX) {
mp_raise_ValueError("buffer too long");
}
memcpy( (char *) rtc_user_mem_data, (char *) bufinfo.buf, bufinfo.len);
memcpy((char *) rtc_user_mem_data, (char *) bufinfo.buf, bufinfo.len);
rtc_user_mem_len = bufinfo.len;
return mp_const_none;
}