From owner-cvs-lib Thu May 7 22:13:57 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA21834 for cvs-lib-outgoing; Thu, 7 May 1998 22:13:57 -0700 (PDT) (envelope-from owner-cvs-lib) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA21791; Thu, 7 May 1998 22:13:27 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14261; Thu, 7 May 1998 22:10:33 -0700 (PDT) Date: Thu, 7 May 1998 22:10:33 -0700 (PDT) Message-Id: <199805080510.WAA14261@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdio vfprintf.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jb 1998/05/07 22:10:33 PDT Modified files: lib/libc/stdio vfprintf.c Log: Don't assign the va_list variable 'ap' directly to the argtable because va_list is not a pointer on alpha. Instead, use the va_arg() macro to return the address that is stored in the argtable. Revision Changes Path 1.19 +18 -19 src/lib/libc/stdio/vfprintf.c