From 3d12b33113296c954ff74c01275c8ad5387ac7d8 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Fri, 6 Nov 2020 23:11:08 +0100 Subject: [PATCH] dev9: fix not defined macro warning. --- pcsx2/DEV9/pcap_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/DEV9/pcap_io.h b/pcsx2/DEV9/pcap_io.h index 701d858f9c..bf97051c07 100644 --- a/pcsx2/DEV9/pcap_io.h +++ b/pcsx2/DEV9/pcap_io.h @@ -14,7 +14,7 @@ */ #pragma once -#if not defined(_WIN32) +#if !defined(_WIN32) #include "pcap.h" #endif #include "net.h"