From 0dec59184b99c692df829359615b715feb1bee47 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 24 Oct 1998 13:39:20 +0000 Subject: [PATCH] Oops, the test for glibc version was wrong :-| --- setpci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setpci.c b/setpci.c index 36a12a4..2cbcfef 100644 --- a/setpci.c +++ b/setpci.c @@ -1,5 +1,5 @@ /* - * $Id: setpci.c,v 1.7 1998/10/23 10:15:20 mj Exp $ + * $Id: setpci.c,v 1.8 1998/10/24 13:39:20 mj Exp $ * * Linux PCI Utilities -- Manipulate PCI Configuration Registers * @@ -19,7 +19,7 @@ #include #include -#if defined(__GLIBC__) && (__GLIBC_MAJOR__ <= 2 || __GLIBC_MINOR__ < 1) +#if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 1 #include #endif -- 2.39.2