Skip to content

Commit f99b7a0

Browse files
committed
fix indentation
1 parent fe2b3af commit f99b7a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/utility/HCIVirtualTransportZephyr.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ int HCIVirtualTransportZephyrClass::available()
5858
}
5959

6060
static struct net_buf *buf;
61-
buf = (struct net_buf*)k_fifo_get(__rx_queue, K_MSEC(10));
61+
buf = (struct net_buf*)k_fifo_get(__rx_queue, K_MSEC(10));
6262
if (!buf) {
6363
return 0;
6464
}
@@ -68,9 +68,9 @@ int HCIVirtualTransportZephyrClass::available()
6868
}
6969
net_buf_pull(buf, buf->len);
7070
if (!buf->len) {
71-
net_buf_unref(buf);
72-
buf = NULL;
73-
}
71+
net_buf_unref(buf);
72+
buf = NULL;
73+
}
7474

7575
return rxbuf.available();
7676
}

0 commit comments

Comments
 (0)