Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/autoview.c
r858 r870 248 248 pchOut += 6 + (fLongAddr ? 4 : 0); 249 249 do { 250 sprintf(pchOut, "%02 hx ",*pchIn);250 sprintf(pchOut, "%02x ", (UCHAR)*pchIn); 251 251 pchOut += 3; 252 252 pchIn++; -
trunk/dll/eas.c
r847 r870 254 254 a = s + 6; 255 255 do { 256 sprintf(a, "%02 hx ",*p);256 sprintf(a, "%02x ", (UCHAR)*p); 257 257 a += 3; 258 258 p++; -
trunk/dll/newview.c
r858 r870 297 297 p = s + 9; 298 298 for (y = 0; y < width; y++) { 299 sprintf(p, " %02 hx",ad->text[(x * 16) + y]);299 sprintf(p, " %02x", (UCHAR)ad->text[(x * 16) + y]); 300 300 p += 3; 301 301 } … … 791 791 p = s + 9; 792 792 for (x = 0; x < width; x++) { 793 sprintf(p, " %02 hx",ad->text[(whichline * 16) + x]);793 sprintf(p, " %02x", (UCHAR)ad->text[(whichline * 16) + x]); 794 794 p += 3; 795 795 } … … 2348 2348 p = s + 9; 2349 2349 for (x = 0; x < width; x++) { 2350 sprintf(p, " %02 hx",ad->text[(whichline * 16) + x]);2350 sprintf(p, " %02x", (UCHAR)ad->text[(whichline * 16) + x]); 2351 2351 p += 3; 2352 2352 } -
trunk/dll/version.h
r866 r870 45 45 21 Aug 07 GKY v3.07beta01: Release 46 46 31 Aug 07 GKY v3.07: Release modified ini structure 47 11 Nov 07 GKY v3.08 Release large file support 47 48 48 49 ***********************************************************************/
Note:
See TracChangeset
for help on using the changeset viewer.