From addd89fe60d62faa134e361f562a2fed8e74d91a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pali=20Roh=C3=A1r?= Date: Thu, 10 Feb 2022 13:33:46 +0100 Subject: [PATCH] libpci: i386-io-windows.h: Fix comment about CRTDLL There is no 64-bit version of CRTDLL library. MinGW-w64 provided bogus 64-bit import library for non-existent runtime DLL library, which was recently deleted. --- lib/i386-io-windows.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/i386-io-windows.h b/lib/i386-io-windows.h index 6cf3a25..9cd9cd9 100644 --- a/lib/i386-io-windows.h +++ b/lib/i386-io-windows.h @@ -37,10 +37,9 @@ #define _inpd(x) __indword(x) #elif defined(__CRTDLL__) /* - * Old CRTDLL library does not provide I/O port functions. Even it is the oldest - * CRT library it exists also in 64-bit variant. Implement I/O port functions - * via inline assembly just for 32-bit mode as 64-bit mode uses above - * header. + * Old 32-bit CRTDLL library does not provide I/O port functions. As this + * library exists only in 32-bit mode variant, implement I/O port functions + * via 32-bit inline assembly. */ static inline int _outp(unsigned short port, int databyte) { -- 2.39.2