From 70c715189394f327651ccb2d96d19004ba3fb7e8 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 13 May 1996 23:50:14 +0000 Subject: Sun May 12 22:52:22 1996 Bruce Elliott * stdio-common/vfprintf.c: Correct handling of unsigned short values. * extra-lib.mk (alltype-$(lib)): Put libs in $(objpfx) instead of $(common-objpfx). * Makerules [install-lib.a]: Find them there. --- ChangeLog | 9 +++++++++ stdio-common/vfprintf.c | 4 +++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 40f5eb4631..ad484099d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,14 @@ +Sun May 12 22:52:22 1996 Bruce Elliott + + * stdio-common/vfprintf.c: Correct handling of unsigned short + values. + Mon May 13 12:03:03 1996 Roland McGrath + * extra-lib.mk (alltype-$(lib)): Put libs in $(objpfx) instead of + $(common-objpfx). + * Makerules [install-lib.a]: Find them there. + * sysdeps/unix/sysv/linux/i386/profil-counter.h: New file. * extra-lib.mk: Skip the hair if $(object-suffixes-$(lib)) is empty. diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index 193c392eb8..1643f370fd 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -495,8 +495,10 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap) { \ if (is_long) \ number.word = va_arg (ap, unsigned long int); \ + else if (!is_short) \ + number.word = va_arg (ap, unsigned int); \ else \ - number.word = va_arg (ap, unsigned int); /* Promoted. */ \ + number.word = (unsigned short int) va_arg (ap, unsigned int); \ \ LABEL (number): \ if (prec < 0) \ -- cgit v1.2.3