Changeset 870 for trunk/dll/autoview.c


Ignore:
Timestamp:
Nov 13, 2007, 11:44:36 PM (18 years ago)
Author:
Gregg Young
Message:

Fixed Hex formating problem (ticket 174) caused by open watcom same as Ticket 143 at different locations. Added 3.08 release comment to version.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/autoview.c

    r858 r870  
    248248      pchOut += 6 + (fLongAddr ? 4 : 0);
    249249      do {
    250         sprintf(pchOut, "%02hx ", *pchIn);
     250        sprintf(pchOut, "%02x ", (UCHAR)*pchIn);
    251251        pchOut += 3;
    252252        pchIn++;
Note: See TracChangeset for help on using the changeset viewer.