Skip to content

Commit 9160e87

Browse files
committed
tidying2
1 parent b5326d7 commit 9160e87

File tree

1 file changed

+1
-1
lines changed
  • ports/nrf/common-hal/busio

1 file changed

+1
-1
lines changed

ports/nrf/common-hal/busio/I2C.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static uint8_t twi_error_to_mp(const nrfx_err_t err) {
105105

106106
static void twim_event_handler(nrfx_twim_evt_t const *p_event, void *p_context) {
107107
// this is the callback handler - sets transferring to false and records the most recent event.
108-
twim_peripheral_t *peripheral = (twim_peripheral_t *) p_context;
108+
twim_peripheral_t *peripheral = (twim_peripheral_t *)p_context;
109109
peripheral->last_event_type = p_event->type;
110110
peripheral->transferring = false;
111111
}

0 commit comments

Comments
 (0)