diff options
author | Moritz Jodeit <moritz@cvs.openbsd.org> | 2007-09-03 12:36:10 +0000 |
---|---|---|
committer | Moritz Jodeit <moritz@cvs.openbsd.org> | 2007-09-03 12:36:10 +0000 |
commit | f22b8671cfea8595e1e69cd8fd3f21342d4f2c2d (patch) | |
tree | 1bab393a065a433de7a5b275380cf954b67b9745 /usr.bin | |
parent | 108a2f2395714191973ea62f16a07f97bc58ca0e (diff) |
last commit broke the tree because of missing parentheses.
ok henning@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/pr/pr.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 <sys/types.h> @@ -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); } |