all: Remove spaces inside and around parenthesis.

Using new options enabled in the uncrustify configuration.
This commit is contained in:
Damien George
2020-03-27 00:35:04 +11:00
parent b56caaf104
commit 1a3e386c67
24 changed files with 49 additions and 49 deletions

View File

@@ -242,7 +242,7 @@ void HAL_PCD_SOFCallback(PCD_HandleTypeDef *hpcd) {
bool usbd_cdc_rx_buffer_full(usbd_cdc_itf_t *cdc) {
int get = cdc->rx_buf_get, put = cdc->rx_buf_put;
int remaining = (get - put) + (-((int) (get <= put)) & USBD_CDC_RX_DATA_SIZE);
int remaining = (get - put) + (-((int)(get <= put)) & USBD_CDC_RX_DATA_SIZE);
return remaining < CDC_DATA_MAX_PACKET_SIZE + 1;
}