From f5346129aec13a5e3cca89b2d0a8972f00e63727 Mon Sep 17 00:00:00 2001 From: TheLastRar Date: Tue, 15 Jun 2021 20:55:44 +0100 Subject: [PATCH] DEV9: Clang format pcap_io.cpp --- pcsx2/DEV9/pcap_io.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pcsx2/DEV9/pcap_io.cpp b/pcsx2/DEV9/pcap_io.cpp index b735fc066d..074182a04f 100644 --- a/pcsx2/DEV9/pcap_io.cpp +++ b/pcsx2/DEV9/pcap_io.cpp @@ -188,12 +188,12 @@ 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. - switched ? 1 : 0, - 1, // read timeout - errbuf // error buffer - )) == NULL) + 65536, // portion of the packet to capture. + // 65536 grants that the whole packet will be captured on all the MACs. + switched ? 1 : 0, + 1, // read timeout + errbuf // error buffer + )) == NULL) { Console.Error("DEV9: %s", errbuf); Console.Error("DEV9: Unable to open the adapter. %s is not supported by pcap", adapter);