From: deraadt Date: Mon, 29 Jan 1996 01:54:22 +0000 (+0000) Subject: from netbsd; warnx called incorrectly X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=8db582a78f66b52e2698a238316d094f5d9038eb;p=openbsd from netbsd; warnx called incorrectly --- diff --git a/lib/libc/gen/getbsize.c b/lib/libc/gen/getbsize.c index a20fe6d9604..218253c10d6 100644 --- a/lib/libc/gen/getbsize.c +++ b/lib/libc/gen/getbsize.c @@ -1,4 +1,4 @@ -/* $NetBSD: getbsize.c,v 1.7 1995/06/16 07:12:41 jtc Exp $ */ +/* $NetBSD: getbsize.c,v 1.8 1996/01/22 16:34:08 mycroft Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)getbsize.c 8.1 (Berkeley) 6/4/93"; #else -static char rcsid[] = "$NetBSD: getbsize.c,v 1.7 1995/06/16 07:12:41 jtc Exp $"; +static char rcsid[] = "$NetBSD: getbsize.c,v 1.8 1996/01/22 16:34:08 mycroft Exp $"; #endif #endif /* not lint */ @@ -98,7 +98,7 @@ fmterr: _warnx("%s: unknown blocksize", p); n = max; } if ((blocksize = n * mul) < 512) { -underflow: _warnx("%s: minimum blocksize is 512"); +underflow: _warnx("%s: minimum blocksize is 512", p); form = ""; blocksize = n = 512; }