From owner-source-changes@NetBSD.ORG Sat Feb 25 00:14:03 1995 Return-Path: owner-source-changes@NetBSD.ORG Received: from pain.lcs.mit.edu (pain.lcs.mit.edu [128.52.46.239]) by freefall.cdrom.com (8.6.9/8.6.6) with ESMTP id AAA14986; Sat, 25 Feb 1995 00:14:02 -0800 Received: (from daemon@localhost) by pain.lcs.mit.edu (8.6.9/8.6.9) id CAA13501 for source-changes-outgoing; Sat, 25 Feb 1995 02:11:19 -0500 Received: from sun-lamp.cs.berkeley.edu by pain.lcs.mit.edu (8.6.9/8.6.9) with ESMTP id CAA13341 for ; Sat, 25 Feb 1995 02:10:26 -0500 Received: (from srcmastr@localhost) by sun-lamp.cs.berkeley.edu (8.6.10/8.6.10) id XAA01480 for source-changes; Fri, 24 Feb 1995 23:10:04 -0800 Date: Fri, 24 Feb 1995 23:10:04 -0800 From: The Source Master Message-Id: <199502250710.XAA01480@sun-lamp.cs.berkeley.edu> To: source-changes@NetBSD.ORG Subject: sun-lamp CVS commits Sender: owner-source-changes@NetBSD.ORG Precedence: list X-Loop: source-changes@NetBSD.ORG cgd Fri Feb 24 23:02:19 PST 1995 Update of /b/source/CVS/src/lib/libc/stdio In directory sun-lamp.cs.berkeley.edu:/usr/src/lib/libc/stdio Modified Files: vfscanf.c Log Message: when you have a quad and want to assign to a pointer, you must say: ptr = (ptr_type)(long)quad; to quiet the compiler. cgd Fri Feb 24 23:06:45 PST 1995 Update of /b/source/CVS/src/lib/libc/stdio In directory sun-lamp.cs.berkeley.edu:/usr/src/lib/libc/stdio Modified Files: vfprintf.c Log Message: when you have a pointer and want to assign to a quad, you must cast it to long to quiet the compiler.