Ignore:
Timestamp:
Aug 22, 2002, 10:43:34 AM (23 years ago)
Author:
umoeller
Message:

Fixed build breaks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/except.c

    r191 r210  
    549549            fprintf(file, "\nXCPT_ACCESS_VIOLATION: ");
    550550            if (pReportRec->ExceptionInfo[0] & XCPT_READ_ACCESS)
    551                 fprintf(file, "Invalid read access from 0x%04lX:%08lX.\n",
    552                         pContextRec->ctx_SegDs, pReportRec->ExceptionInfo[1]);
     551                fprintf(file, "XCPT_READ_ACCESS -- Invalid read access from 0x%04lX:%08lX.\n",
     552                        pContextRec->ctx_SegDs,
     553                        pReportRec->ExceptionInfo[1]);
    553554            else if (pReportRec->ExceptionInfo[0] & XCPT_WRITE_ACCESS)
    554                 fprintf(file, "Invalid write access to 0x%04lX:%08lX.\n",
    555                         pContextRec->ctx_SegDs, pReportRec->ExceptionInfo[1]);
     555                fprintf(file, "XCPT_WRITE_ACCESS -- Invalid write access to 0x%04lX:%08lX.\n",
     556                        pContextRec->ctx_SegDs,
     557                        pReportRec->ExceptionInfo[1]);
    556558            else if (pReportRec->ExceptionInfo[0] & XCPT_SPACE_ACCESS)
    557                 fprintf(file, "Invalid space access at 0x%04lX.\n",
     559                fprintf(file, "XCPT_SPACE_ACCESS -- Invalid space access at 0x%04lX.\n",
    558560                        pReportRec->ExceptionInfo[1]);
    559561            else if (pReportRec->ExceptionInfo[0] & XCPT_LIMIT_ACCESS)
    560                 fprintf(file, "Invalid limit access occurred.\n");
     562                fprintf(file, "XCPT_LIMIT_ACCESS -- Invalid limit access occurred.\n");
    561563            else if (pReportRec->ExceptionInfo[0] == XCPT_UNKNOWN_ACCESS)
    562                 fprintf(file, "unknown at 0x%04lX:%08lX\n",
    563                             pContextRec->ctx_SegDs, pReportRec->ExceptionInfo[1]);
     564                fprintf(file, "XCPT_UNKNOWN_ACCESS -- unknown at 0x%04lX:%08lX\n",
     565                        pContextRec->ctx_SegDs,
     566                        pReportRec->ExceptionInfo[1]);
    564567            fprintf(file,
    565568                    "Explanation: An attempt was made to access a memory object which does\n"
Note: See TracChangeset for help on using the changeset viewer.