Commit d3b4c003 by Tobias Naehring Committed by Jeff Law

* makeinfo/makeinfo.c (add_word_args): Fix thinko.

From-SVN: r20969
parent 4a870dba
Mon Jul 6 22:52:28 1998 Tobias Naehring <naehring@eeetw3.et.tu-dresden.de>
* makeinfo/makeinfo.c (add_word_args): Fix thinko.
Sun Apr 12 20:59:53 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
* configure.in: only set HAVE_LIBZ if zlib.h exists
......
......@@ -2639,7 +2639,7 @@ add_word_args (format, va_alist)
#ifdef VA_SPRINTF
VA_SPRINTF (buffer, format, ap);
#else
sprintf (temp_string, format, a1, a2, a3, a4, a5, a6, a7, a8);
sprintf (buffer, format, a1, a2, a3, a4, a5, a6, a7, a8);
#endif /* not VA_SPRINTF */
va_end (ap);
add_word (buffer);
......
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