Commit 8f04d345 by Jeffrey A Law Committed by Jeff Law

* haifa-sched.c (get_visual_tbl_length): Fix off-by-one error.

From-SVN: r28837
parent 411c6851
Tue Aug 24 22:56:35 1999 Jeffrey A Law (law@cygnus.com)
* haifa-sched.c (get_visual_tbl_length): Fix off-by-one error.
Tue Aug 24 22:41:06 1999 Mumit Khan <khan@xraylith.wisc.edu> Tue Aug 24 22:41:06 1999 Mumit Khan <khan@xraylith.wisc.edu>
* fixinc/mkfixinc.sh: Don't fix uwin headers. * fixinc/mkfixinc.sh: Don't fix uwin headers.
......
...@@ -5755,7 +5755,7 @@ get_visual_tbl_length () ...@@ -5755,7 +5755,7 @@ get_visual_tbl_length ()
char *s; char *s;
/* compute length of one field in line */ /* compute length of one field in line */
s = (char *) alloca (INSN_LEN + 5); s = (char *) alloca (INSN_LEN + 6);
sprintf (s, " %33s", "uname"); sprintf (s, " %33s", "uname");
n1 = strlen (s); n1 = strlen (s);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment