projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7921bd
)
Send the right # of args to an fprintf
author
Steve Chamberlain
<steve@cygnus>
Thu, 18 Apr 1991 21:14:21 +0000
(21:14 +0000)
committer
Steve Chamberlain
<steve@cygnus>
Thu, 18 Apr 1991 21:14:21 +0000
(21:14 +0000)
binutils/sparc-pinsn.c
patch
|
blob
|
history
diff --git
a/binutils/sparc-pinsn.c
b/binutils/sparc-pinsn.c
index 041cade585853ae9a3c447d40504e21e641883ce..0da53ee31953204a011e1509057cbe3a466e8191 100644
(file)
--- 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);
}