Changeset 9470 for trunk/src


Ignore:
Timestamp:
Dec 6, 2002, 3:55:33 AM (23 years ago)
Author:
bird
Message:

Allways print rc in hex.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/dev16/probkrnl.c

    r6432 r9470  
    1 /* $Id: probkrnl.c,v 1.37 2001-07-31 21:48:32 bird Exp $
     1/* $Id: probkrnl.c,v 1.38 2002-12-06 02:55:33 bird Exp $
    22 *
    33 * Description:   Autoprobes the os2krnl file and os2krnl[*].sym files.
     
    12831283                     options.ulBuild, options.usVerMajor, options.usVerMinor);
    12841284        else if (rc >= ERROR_PROB_KRNL_FIRST)
    1285             printf16("    Kernel probing failed with rc=%d.\n", rc);
     1285            printf16("    Kernel probing failed with rc=%d (0x%x).\n", rc, rc);
    12861286        else
    12871287            printf16("    Failed before probing kernel.\n");
     
    13191319        {
    13201320            const char *psz = GetErrorMsg(rc);
    1321             printf16("ProbeKernel failed with rc=%d. iProc=%x\n", rc, iProc);
     1321            printf16("ProbeKernel failed with rc=%d (0x%x). iProc=%x\n", rc, rc, iProc);
    13221322            if (psz) printf16("%s\n", psz);
    13231323            printf16("\n");
     
    14331433            if (rc)
    14341434            {
    1435                 printf16("Warning: Invalid symbol file specified. rc=%x iProc=%d\n"
    1436                          "         Tries defaults.\n", rc, iProc);
     1435                printf16("Warning: Invalid symbol file specified. rc=%d (0x%x) iProc=%d\n"
     1436                         "         Tries defaults.\n", rc, rc, iProc);
    14371437                szSymbolFile[0] = '\0';
    14381438                DosSleep(3000);
Note: See TracChangeset for help on using the changeset viewer.