Skip to content

Commit 1a52cbc

Browse files
committed
Format a straggler file
1 parent da19e8e commit 1a52cbc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ports/nrf/common-hal/_bleio/PacketBuffer.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,8 +401,8 @@ mp_int_t common_hal_bleio_packet_buffer_get_outgoing_packet_length(bleio_packet_
401401
bleio_connection_internal_t *connection = bleio_conn_handle_to_connection(self->conn_handle);
402402
if (connection) {
403403
return MIN(MIN(common_hal_bleio_connection_get_max_packet_length(connection),
404-
self->max_packet_size),
405-
self->characteristic->max_length);
404+
self->max_packet_size),
405+
self->characteristic->max_length);
406406
}
407407
}
408408
// There's no current connection, so we don't know the MTU, and
@@ -418,7 +418,7 @@ mp_int_t common_hal_bleio_packet_buffer_get_outgoing_packet_length(bleio_packet_
418418
bleio_connection_internal_t *connection = bleio_conn_handle_to_connection(self->conn_handle);
419419
if (connection) {
420420
return MIN(common_hal_bleio_connection_get_max_packet_length(connection),
421-
self->max_packet_size);
421+
self->max_packet_size);
422422
}
423423
}
424424
}

0 commit comments

Comments
 (0)