summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormoritz <moritz@openbsd.org>2007-09-03 12:36:09 +0000
committermoritz <moritz@openbsd.org>2007-09-03 12:36:09 +0000
commitd41616f150349c8fc61a50669fbfd27e231b4017 (patch)
tree411523e4b4e5016059593db96ebdf9ff9927d3f6
parent__inline removal (diff)
downloadwireguard-openbsd-d41616f150349c8fc61a50669fbfd27e231b4017.tar.xz
wireguard-openbsd-d41616f150349c8fc61a50669fbfd27e231b4017.zip
last commit broke the tree because of missing parentheses.
ok henning@
-rw-r--r--usr.bin/pr/pr.c6
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);
}