mirror of
https://github.com/apache/nuttx.git
synced 2026-08-25 07:27:11 +00:00
net/pkt: pkt_input() should not report an error using the nerr() macro when the PKT tap does not need the packet. That is not an error. Use ninfo() instead.
This commit is contained in:
parent
06f132c5d0
commit
1fd9eb6069
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ int pkt_input(struct net_driver_s *dev)
|
|||
}
|
||||
else
|
||||
{
|
||||
nerr("ERROR: No listener\n");
|
||||
ninfo("No PKT listener\n");
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue