Skip to content

Commit 583fc76

Browse files
committed
run uncrustify
1 parent 1727151 commit 583fc76

File tree

1 file changed

+1
-1
lines changed
  • shared-bindings/bitbangio

1 file changed

+1
-1
lines changed

shared-bindings/bitbangio/SPI.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ STATIC mp_obj_t bitbangio_spi_readinto(size_t n_args, const mp_obj_t *pos_args,
260260
return mp_const_none;
261261
}
262262

263-
bool ok = shared_module_bitbangio_spi_read(self, ((uint8_t*)bufinfo.buf) + start, length, args[ARG_write_value].u_int);
263+
bool ok = shared_module_bitbangio_spi_read(self, ((uint8_t *)bufinfo.buf) + start, length, args[ARG_write_value].u_int);
264264
if (!ok) {
265265
mp_raise_OSError(MP_EIO);
266266
}

0 commit comments

Comments
 (0)