summaryrefslogtreecommitdiff
path: root/manual/stdio.texi
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-04-28 09:57:10 +0000
committerUlrich Drepper <drepper@redhat.com>1998-04-28 09:57:10 +0000
commit4b8f94d33fbd2929bf1046c0c2df23b6110d0b8a (patch)
tree85d64747018c1cca3d249795fd56da8b1988a53c /manual/stdio.texi
parent17d519656a3705ad37665788c5ff6f6c19fb16d8 (diff)
Update.
1998-04-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * 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 <schwab@issan.informatik.uni-dortmund.de> * string/string.h: Fix feature test. 1998-04-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * iconvdata/iso646.c (BODY): Don't use character constants that depend on signedness of char.
Diffstat (limited to 'manual/stdio.texi')
-rw-r--r--manual/stdio.texi6
1 files changed, 3 insertions, 3 deletions
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);
@}