summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordm <dm@cvs.openbsd.org>1996-06-08 03:54:57 +0000
committerdm <dm@cvs.openbsd.org>1996-06-08 03:54:57 +0000
commit6d88232e74ed1a62db50f574c0b1223bdf32e39c (patch)
treef32096bdfc2e415fd9afefd550c789d16e98f221
parente95c2c6db085cb186fd4011317c2b6647a26b954 (diff)
missing brace
-rw-r--r--sbin/disklabel/disklabel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/disklabel/disklabel.c b/sbin/disklabel/disklabel.c
index 0124d49d9ef..10ef2111a8d 100644
--- a/sbin/disklabel/disklabel.c
+++ b/sbin/disklabel/disklabel.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: disklabel.c,v 1.7 1996/06/06 12:10:01 deraadt Exp $ */
+/* $OpenBSD: disklabel.c,v 1.8 1996/06/08 03:54:56 dm Exp $ */
/* $NetBSD: disklabel.c,v 1.30 1996/03/14 19:49:24 ghudson Exp $ */
/*
@@ -941,7 +941,7 @@ editit()
if ((ed = getenv("EDITOR")) == (char *)0)
ed = DEFEDITOR;
p = (char *)malloc(strlen(ed) + 1 + strlen(tmpfil) + 1);
- if (!p)
+ if (!p) {
warn("failed to start editor");
return (0);
}