summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-10-09 02:44:55 +0000
committerderaadt <deraadt@openbsd.org>2014-10-09 02:44:55 +0000
commite8432fe663cc385b56fd1eab7556925f34b0c968 (patch)
treea5070c81ccaad24e46eb193e5b8ef49a4e859044
parentobvious reallocarray() conversions (diff)
downloadwireguard-openbsd-e8432fe663cc385b56fd1eab7556925f34b0c968.tar.xz
wireguard-openbsd-e8432fe663cc385b56fd1eab7556925f34b0c968.zip
indent
-rw-r--r--usr.sbin/ldomctl/ldomctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldomctl/ldomctl.c b/usr.sbin/ldomctl/ldomctl.c
index 27ee1a0d61f..7e6dcb708a4 100644
--- a/usr.sbin/ldomctl/ldomctl.c
+++ b/usr.sbin/ldomctl/ldomctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ldomctl.c,v 1.19 2012/12/09 20:24:53 kettenis Exp $ */
+/* $OpenBSD: ldomctl.c,v 1.20 2014/10/09 02:44:55 deraadt Exp $ */
/*
* Copyright (c) 2012 Mark Kettenis
@@ -170,7 +170,7 @@ add_guest(struct md_node *node)
struct guest *guest;
struct md_prop *prop;
- guest = xmalloc (sizeof(*guest));
+ guest = xmalloc(sizeof(*guest));
if (!md_get_prop_str(hvmd, node, "name", &guest->name))
goto free;