aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-04-18 21:14:21 +0000
committerSteve Chamberlain <steve@cygnus>1991-04-18 21:14:21 +0000
commit75a082e25ed0cd000dd246f83084d5f38f931e15 (patch)
treea1c8bab447ad8cc482719d5a3fafb25463aabd73 /binutils
parente7921bd4c50b93592c50ba9413c6598f42c7b1b2 (diff)
downloadgdb-75a082e25ed0cd000dd246f83084d5f38f931e15.zip
gdb-75a082e25ed0cd000dd246f83084d5f38f931e15.tar.gz
gdb-75a082e25ed0cd000dd246f83084d5f38f931e15.tar.bz2
Send the right # of args to an fprintf
Diffstat (limited to 'binutils')
-rw-r--r--binutils/sparc-pinsn.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/binutils/sparc-pinsn.c b/binutils/sparc-pinsn.c
index 041cade..0da53ee 100644
--- a/binutils/sparc-pinsn.c
+++ b/binutils/sparc-pinsn.c
@@ -20,9 +20,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* $Id$
$Log$
- Revision 1.1.1.1 1991/03/21 21:26:56 gumby
- Back from Intel with Steve
+ Revision 1.2 1991/04/18 21:14:21 steve
+ Send the right # of args to an fprintf
+ * Revision 1.1.1.1 1991/03/21 21:26:56 gumby
+ * Back from Intel with Steve
+ *
* Revision 1.1 1991/03/21 21:26:55 gumby
* Initial revision
*
@@ -400,7 +403,7 @@ memcpy(&insn,buffer, sizeof (insn));
}
}
- fprintf ("%#8x", insn.code);
+ fprintf (stream, "%#8x", insn.code);
return sizeof (insn);
}