- Timestamp:
- Dec 6, 2002, 3:55:33 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/dev16/probkrnl.c
r6432 r9470 1 /* $Id: probkrnl.c,v 1.3 7 2001-07-31 21:48:32bird Exp $1 /* $Id: probkrnl.c,v 1.38 2002-12-06 02:55:33 bird Exp $ 2 2 * 3 3 * Description: Autoprobes the os2krnl file and os2krnl[*].sym files. … … 1283 1283 options.ulBuild, options.usVerMajor, options.usVerMinor); 1284 1284 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); 1286 1286 else 1287 1287 printf16(" Failed before probing kernel.\n"); … … 1319 1319 { 1320 1320 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); 1322 1322 if (psz) printf16("%s\n", psz); 1323 1323 printf16("\n"); … … 1433 1433 if (rc) 1434 1434 { 1435 printf16("Warning: Invalid symbol file specified. rc=% xiProc=%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); 1437 1437 szSymbolFile[0] = '\0'; 1438 1438 DosSleep(3000);
Note:
See TracChangeset
for help on using the changeset viewer.