net: buf: Remove timeout variable from debug print
The timeout value cannot be printed anymore after k_timeout_t changes. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
66d394d97a
commit
8cd1dcc69c
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,7 @@ struct net_buf *net_buf_get(struct k_fifo *fifo, k_timeout_t timeout)
|
||||||
{
|
{
|
||||||
struct net_buf *buf, *frag;
|
struct net_buf *buf, *frag;
|
||||||
|
|
||||||
NET_BUF_DBG("%s():%d: fifo %p timeout %d", func, line, fifo, timeout);
|
NET_BUF_DBG("%s():%d: fifo %p", func, line, fifo);
|
||||||
|
|
||||||
buf = k_fifo_get(fifo, timeout);
|
buf = k_fifo_get(fifo, timeout);
|
||||||
if (!buf) {
|
if (!buf) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue