From 5d111636b49e4e3923bd3501958fa281b01bc44e Mon Sep 17 00:00:00 2001 From: TheLastRar Date: Mon, 8 Feb 2021 16:04:13 +0000 Subject: [PATCH] DEV9: Clang format --- pcsx2/DEV9/pcap_io.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/DEV9/pcap_io.cpp b/pcsx2/DEV9/pcap_io.cpp index 268270133c..8c216d58f1 100644 --- a/pcsx2/DEV9/pcap_io.cpp +++ b/pcsx2/DEV9/pcap_io.cpp @@ -155,10 +155,10 @@ int pcap_io_init(char* adapter, bool switched, mac_address virtual_mac) /* Open the adapter */ if ((adhandle = pcap_open_live(adapter, // name of the device 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, - 1, // read timeout - errbuf // error buffer + 1, // read timeout + errbuf // error buffer )) == NULL) { Console.Error("%s", errbuf);