Changeset 6947 for trunk/src


Ignore:
Timestamp:
Oct 4, 2001, 2:30:29 PM (24 years ago)
Author:
bird
Message:

Corrected kernel type reporting. Bad test.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/utils/Win32kCC.c

    r5489 r6947  
    1 /* $Id: Win32kCC.c,v 1.15 2001-04-06 15:26:09 bird Exp $
     1/* $Id: Win32kCC.c,v 1.16 2001-10-04 12:30:29 bird Exp $
    22 *
    33 * Win32CC - Win32k Control Center.
     
    17881788        {
    17891789            if (flKernel & KF_HAS_DEBUGTYPE)
    1790                 pszAdd = (flKernel & KF_ALLSTRICT) ? "(Allstrict)" : "(Halfstrict)";
     1790                pszAdd = (flKernel & (KF_ALLSTRICT | KF_HALFSTRICT)) == KF_ALLSTRICT
     1791                          ? "(Allstrict)" : "(Halfstrict)";
    17911792            else
    17921793                pszAdd = "(Debug)";
Note: See TracChangeset for help on using the changeset viewer.