From 4b8f94d33fbd2929bf1046c0c2df23b6110d0b8a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 28 Apr 1998 09:57:10 +0000 Subject: Update. 1998-04-27 Andreas Schwab * iconvdata/Makefile ($(objpfx)iconv-test.out): Use this as target instead of do-iconv-test. ($(objpfx)gconv-modules): Define rule only if objpfx is not empty. 1998-04-27 Andreas Schwab * string/string.h: Fix feature test. 1998-04-27 Andreas Schwab * iconvdata/iso646.c (BODY): Don't use character constants that depend on signedness of char. --- manual/stdio.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'manual/stdio.texi') diff --git a/manual/stdio.texi b/manual/stdio.texi index 7b56787e95..84b2ffd1cb 100644 --- a/manual/stdio.texi +++ b/manual/stdio.texi @@ -1545,12 +1545,12 @@ make_message (char *name, char *value) @group if (nchars >= size) @{ - /* @r{Reallocate buffer now that we know + /* @r{Reallocate buffer now that we know how much space is needed.} */ buffer = (char *) xrealloc (buffer, nchars + 1); /* @r{Try again.} */ - snprintf (buffer, size, "value of %s is %s", + snprintf (buffer, size, "value of %s is %s", name, value); @} /* @r{The last call worked, return the string.} */ @@ -1727,7 +1727,7 @@ eprintf (const char *template, ...) extern char *program_invocation_short_name; fprintf (stderr, "%s: ", program_invocation_short_name); - va_start (ap, count); + va_start (ap, template); vfprintf (stderr, template, ap); va_end (ap); @} -- cgit v1.2.3