From: Martin Mares Date: Sat, 24 Oct 1998 13:39:20 +0000 (+0000) Subject: Oops, the test for glibc version was wrong :-| X-Git-Tag: v3.0.0~310 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=0dec59184b99c692df829359615b715feb1bee47;p=pciutils.git Oops, the test for glibc version was wrong :-| --- 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