Changeset 46 for trunk/src/pe2lx/LX.CPP


Ignore:
Timestamp:
Jun 7, 1999, 10:58:22 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/pe2lx/LX.CPP

    r4 r46  
    1 /* $Id: LX.CPP,v 1.1 1999-05-24 20:19:52 ktk Exp $ */
    2 
    31/*
    42 * PE2LX LX code
     
    4038#define min(a,b)  ((a<b) ? (a) : (b))
    4139#endif
     40
     41//In pe.cpp
     42char *hex(ULONG num);
    4243
    4344LXHeader OS2Exe;
     
    642643  type = GetSectionByAddress(address);
    643644  if(type == -1) {
    644         cout << "Oops, fixup error 1...." << endl;
     645        cout << "Oops, fixup error 1.... at " << hex(address) << endl;
    645646        return;     //hmmmmmmmmmm
    646647  }
     
    659660  type = GetRealSectionByAddress(targetaddr);
    660661  if(type == -1){
    661         cout << "Oops, fixup error 2...." << endl;
     662        cout << "Oops, fixup error 2.... at " << hex(targetaddr) << endl;
    662663        return;     //hmmmmmmmmmm
    663664  }
Note: See TracChangeset for help on using the changeset viewer.