GNU Binutils with patches for OS216
Revision | c93a350722500593dffe960f89c8e7cded819540 (tree) |
---|---|
Time | 1991-04-19 16:06:13 |
Author | Jim Kingdon <jkingdon@engr...> |
Commiter | Jim Kingdon |
* i386-pinsn.c (OP_E): Change %d to 0x%x for consistency.
@@ -1,5 +1,7 @@ | ||
1 | 1 | Thu Apr 18 19:49:10 1991 Jim Kingdon (kingdon at cygint.cygnus.com) |
2 | 2 | |
3 | + * i386-pinsn.c (OP_E): Change %d to 0x%x for consistency. | |
4 | + | |
3 | 5 | * putenv.c: New file |
4 | 6 | Makefile.dist: Add it to $(OBS). |
5 | 7 |
@@ -1505,7 +1505,7 @@ OP_E (bytemode) | ||
1505 | 1505 | |
1506 | 1506 | if (mod != 0 || rm == 5 || (havesib && base == 5)) |
1507 | 1507 | { |
1508 | - sprintf (scratchbuf, "%d", disp); | |
1508 | + sprintf (scratchbuf, "0x%x", disp); | |
1509 | 1509 | oappend (scratchbuf); |
1510 | 1510 | } |
1511 | 1511 |