From owner-freebsd-commit Tue Apr 25 05:18:28 1995 Return-Path: commit-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id FAA28631 for commit-outgoing; Tue, 25 Apr 1995 05:18:28 -0700 Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id FAA28614 for cvs-sys-outgoing; Tue, 25 Apr 1995 05:18:24 -0700 Received: (from bde@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id FAA28591 ; Tue, 25 Apr 1995 05:18:09 -0700 Date: Tue, 25 Apr 1995 05:18:09 -0700 From: Bruce Evans Message-Id: <199504251218.FAA28591@freefall.cdrom.com> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa/pcvt pcvt_drv.c pcvt_hdr.h Sender: commit-owner@FreeBSD.org Precedence: bulk bde 95/04/25 05:18:08 Modified: sys/i386/isa/pcvt pcvt_drv.c pcvt_hdr.h Log: Fix benign type mismatches int console functions. dev_t was assumed to be `int' or smaller and some functions returned `int' instead of `void'. The first bug was detected when console functions were defined in a place central enough for type checking to actually work and the second bug was introduced when the interface was changed to match what the console functions in other drivers actually return.