mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix external compiler warning about write-only assigned variable.
This commit is contained in:
parent
3b251028e2
commit
bce421e9f7
1 changed files with 1 additions and 3 deletions
|
|
@ -215,9 +215,7 @@ usbd_m_copy_in(struct usb_page_cache *cache, usb_frlength_t dst_offset,
|
|||
struct mbuf *m, usb_size_t src_offset, usb_frlength_t src_len)
|
||||
{
|
||||
struct usb_m_copy_in_arg arg = {cache, dst_offset};
|
||||
int error;
|
||||
|
||||
error = m_apply(m, src_offset, src_len, &usbd_m_copy_in_cb, &arg);
|
||||
(void) m_apply(m, src_offset, src_len, &usbd_m_copy_in_cb, &arg);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue