summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormmcc <mmcc@cvs.openbsd.org>2015-11-03 04:55:45 +0000
committermmcc <mmcc@cvs.openbsd.org>2015-11-03 04:55:45 +0000
commit666cb7d7a4ff962cc1667e5fa36bda66e8c83bce (patch)
tree225db926498a3cc835d090e8f9682a8611e237c1
parent78703e88eb5fbb433edc34721c9854daca0fb700 (diff)
Blank line before pledge().
-rw-r--r--usr.bin/column/column.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/column/column.c b/usr.bin/column/column.c
index 9db9985144e..20fa4f7401c 100644
--- a/usr.bin/column/column.c
+++ b/usr.bin/column/column.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: column.c,v 1.21 2015/10/09 01:37:07 deraadt Exp $ */
+/* $OpenBSD: column.c,v 1.22 2015/11/03 04:55:44 mmcc Exp $ */
/* $NetBSD: column.c,v 1.4 1995/09/02 05:53:03 jtc Exp $ */
/*
@@ -116,6 +116,7 @@ main(int argc, char *argv[])
}
}
}
+
if (pledge("stdio", NULL) == -1)
err(1, "pledge");