* sysconf.cc (sysconf): Fix condition.

This commit is contained in:
Corinna Vinschen 2002-03-12 08:57:22 +00:00
parent 1f77d71b4c
commit cb4589f49d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-03-12 Corinna Vinschen <corina@vinschen.de>
* sysconf.cc (sysconf): Fix condition.
2002-03-11 Corinna Vinschen <corina@vinschen.de>
* mmap.cc (msync): Check area given by addr and len for being a

View file

@ -62,7 +62,7 @@ sysconf (int in)
/*FALLTHRU*/
case _SC_PHYS_PAGES:
case _SC_AVPHYS_PAGES:
if (!wincap.supports_smp ())
if (wincap.supports_smp ())
{
NTSTATUS ret;
SYSTEM_BASIC_INFORMATION sbi;