mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-11 10:30:09 +00:00
fix a warning and indents
This commit is contained in:
parent
a97df3c953
commit
d157f74b5d
@ -274,9 +274,9 @@ if_start(void)
|
|||||||
return; /* Nothing to do */
|
return; /* Nothing to do */
|
||||||
|
|
||||||
again:
|
again:
|
||||||
/* check if we can really output */
|
/* check if we can really output */
|
||||||
if (!slirp_can_output())
|
if (!slirp_can_output())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* See which queue to get next packet from
|
* See which queue to get next packet from
|
||||||
@ -313,9 +313,9 @@ if_start(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Encapsulate the packet for sending */
|
/* Encapsulate the packet for sending */
|
||||||
if_encap(ifm->m_data, ifm->m_len);
|
if_encap((uint8_t*)ifm->m_data, ifm->m_len);
|
||||||
|
|
||||||
m_free(ifm);
|
m_free(ifm);
|
||||||
|
|
||||||
if (if_queued)
|
if (if_queued)
|
||||||
goto again;
|
goto again;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user