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:
Jukka Rissanen 2020-04-06 15:19:33 +03:00
parent 66d394d97a
commit 8cd1dcc69c

View file

@ -409,7 +409,7 @@ struct net_buf *net_buf_get(struct k_fifo *fifo, k_timeout_t timeout)
{
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);
if (!buf) {