mirror of https://github.com/PCSX2/pcsx2.git
DEV9: Clang format
This commit is contained in:
parent
c634f2e6e3
commit
5d111636b4
|
@ -155,10 +155,10 @@ int pcap_io_init(char* adapter, bool switched, mac_address virtual_mac)
|
||||||
/* Open the adapter */
|
/* Open the adapter */
|
||||||
if ((adhandle = pcap_open_live(adapter, // name of the device
|
if ((adhandle = pcap_open_live(adapter, // name of the device
|
||||||
65536, // portion of the packet to capture.
|
65536, // portion of the packet to capture.
|
||||||
// 65536 grants that the whole packet will be captured on all the MACs.
|
// 65536 grants that the whole packet will be captured on all the MACs.
|
||||||
switched ? 1 : 0,
|
switched ? 1 : 0,
|
||||||
1, // read timeout
|
1, // read timeout
|
||||||
errbuf // error buffer
|
errbuf // error buffer
|
||||||
)) == NULL)
|
)) == NULL)
|
||||||
{
|
{
|
||||||
Console.Error("%s", errbuf);
|
Console.Error("%s", errbuf);
|
||||||
|
|
Loading…
Reference in New Issue