make style

This commit is contained in:
Philippe Teuwen
2019-06-07 21:40:33 +02:00
parent 5eeb356418
commit a55e597e36
37 changed files with 193 additions and 193 deletions

View File

@@ -112,7 +112,7 @@ serial_port uart_open(const char *pcPortName, uint32_t speed) {
struct addrinfo info;
memset (&info, 0, sizeof(info));
memset(&info, 0, sizeof(info));
info.ai_socktype = SOCK_STREAM;
@@ -249,7 +249,7 @@ int uart_receive(const serial_port sp, uint8_t *pbtRx, uint32_t pszMaxRxLen, uin
fd_set rfds;
struct timeval tv;
if ( newtimeout_pending ) {
if (newtimeout_pending) {
timeout.tv_usec = newtimeout_value * 1000;
newtimeout_pending = false;
}
@@ -312,7 +312,7 @@ int uart_send(const serial_port sp, const uint8_t *pbtTx, const uint32_t len) {
uint32_t pos = 0;
fd_set rfds;
struct timeval tv;
while (pos < len) {
// Reset file descriptor
FD_ZERO(&rfds);

View File

@@ -58,7 +58,7 @@ int uart_reconfigure_timeouts(uint32_t value) {
}
static int uart_reconfigure_timeouts_polling(serial_port sp) {
if ( newtimeout_pending == false )
if (newtimeout_pending == false)
return PM3_SUCCESS;
newtimeout_pending = false;