* i386-pinsn.c (OP_E): Change %d to 0x%x for consistency.
authorJim Kingdon <jkingdon@engr.sgi.com>
Fri, 19 Apr 1991 07:06:13 +0000 (07:06 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Fri, 19 Apr 1991 07:06:13 +0000 (07:06 +0000)
gdb/ChangeLog
gdb/i386-pinsn.c

index e42b73394a345ef6498fabe7ff433e54a08ebc9d..f5b3b9e41d93c73a212ec5324ee9a60c640da5c8 100644 (file)
@@ -1,5 +1,7 @@
 Thu Apr 18 19:49:10 1991  Jim Kingdon  (kingdon at cygint.cygnus.com)
 
+       * i386-pinsn.c (OP_E): Change %d to 0x%x for consistency.
+
        * putenv.c: New file
        Makefile.dist: Add it to $(OBS).
 
index 2b34a778728a6dafb7883b597c0bc516dc8720de..0b18d46b125f8d53b7657b776438feb1302cfcf6 100644 (file)
@@ -1505,7 +1505,7 @@ OP_E (bytemode)
   
   if (mod != 0 || rm == 5 || (havesib && base == 5))
     {
-      sprintf (scratchbuf, "%d", disp);
+      sprintf (scratchbuf, "0x%x", disp);
       oappend (scratchbuf);
     }