From f22b8671cfea8595e1e69cd8fd3f21342d4f2c2d Mon Sep 17 00:00:00 2001 From: Moritz Jodeit Date: Mon, 3 Sep 2007 12:36:10 +0000 Subject: last commit broke the tree because of missing parentheses. ok henning@ --- usr.bin/pr/pr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/pr') diff --git a/usr.bin/pr/pr.c b/usr.bin/pr/pr.c index e1582909a92..a83c0642191 100644 --- a/usr.bin/pr/pr.c +++ b/usr.bin/pr/pr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pr.c,v 1.24 2007/09/03 05:40:00 deraadt Exp $ */ +/* $OpenBSD: pr.c,v 1.25 2007/09/03 12:36:09 moritz Exp $ */ /*- * Copyright (c) 1991 Keith Muller. @@ -41,7 +41,7 @@ static char copyright[] = #ifndef lint /* from: static char sccsid[] = "@(#)pr.c 8.1 (Berkeley) 6/6/93"; */ -static char *rcsid = "$OpenBSD: pr.c,v 1.24 2007/09/03 05:40:00 deraadt Exp $"; +static char *rcsid = "$OpenBSD: pr.c,v 1.25 2007/09/03 12:36:09 moritz Exp $"; #endif /* not lint */ #include @@ -376,7 +376,7 @@ vertcol(int argc, char *argv[]) /* * allocate page buffer */ - if ((buf = malloc(unsigned)lines*mxlen)) == NULL) { + if ((buf = malloc((unsigned)lines*mxlen)) == NULL) { mfail(); return(1); } -- cgit v1.2.3