summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2005-12-19 19:13:50 +0000
committermillert <millert@openbsd.org>2005-12-19 19:13:50 +0000
commitfba9bb0d9e1afbf57d63f563583f174039d7d3ce (patch)
tree50f080e930ec3d39f2f7a7ffeb0aca4a0e93592c
parentremove trailing space (diff)
downloadwireguard-openbsd-fba9bb0d9e1afbf57d63f563583f174039d7d3ce.tar.xz
wireguard-openbsd-fba9bb0d9e1afbf57d63f563583f174039d7d3ce.zip
fix indentation
-rw-r--r--usr.bin/ipcrm/ipcrm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ipcrm/ipcrm.c b/usr.bin/ipcrm/ipcrm.c
index d88b9f0998d..aa11580cbf4 100644
--- a/usr.bin/ipcrm/ipcrm.c
+++ b/usr.bin/ipcrm/ipcrm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ipcrm.c,v 1.9 2005/02/22 14:56:21 jmc Exp $*/
+/* $OpenBSD: ipcrm.c,v 1.10 2005/12/19 19:13:50 millert Exp $*/
/*
* Copyright (c) 1994 Adam Glass
@@ -84,7 +84,7 @@ shmrm(key_t key, int id)
id = shmget(key, 0, 0);
if (id == -1)
return (-1);
- }
+ }
return (shmctl(id, IPC_RMID, NULL));
}