summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Wildt <patrick@cvs.openbsd.org>2017-02-03 13:06:21 +0000
committerPatrick Wildt <patrick@cvs.openbsd.org>2017-02-03 13:06:21 +0000
commitb9ba973c1774bce6808662bef1fdf3edfe0ef952 (patch)
tree3a9eb9a77884069cc8aa90af8cdabc96509b6089
parentd9ef92f636f551ae9a14ff7ea4d98db94baddbcd (diff)
whitespace fixes
-rw-r--r--sys/arch/arm64/stand/efiboot/exec.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/arch/arm64/stand/efiboot/exec.c b/sys/arch/arm64/stand/efiboot/exec.c
index 8f1a47eeb61..088401a48eb 100644
--- a/sys/arch/arm64/stand/efiboot/exec.c
+++ b/sys/arch/arm64/stand/efiboot/exec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec.c,v 1.2 2017/01/23 12:02:14 patrick Exp $ */
+/* $OpenBSD: exec.c,v 1.3 2017/02/03 13:06:20 patrick Exp $ */
/*
* Copyright (c) 2006, 2016 Mark Kettenis
@@ -64,15 +64,15 @@ run_loadfile(u_long *marks, int howto)
*cp++ = ' ';
*cp = '-';
- if (howto & RB_ASKNAME)
- *++cp = 'a';
- if (howto & RB_CONFIG)
- *++cp = 'c';
- if (howto & RB_SINGLE)
- *++cp = 's';
- if (howto & RB_KDB)
- *++cp = 'd';
- if (*cp == '-')
+ if (howto & RB_ASKNAME)
+ *++cp = 'a';
+ if (howto & RB_CONFIG)
+ *++cp = 'c';
+ if (howto & RB_SINGLE)
+ *++cp = 's';
+ if (howto & RB_KDB)
+ *++cp = 'd';
+ if (*cp == '-')
*--cp = 0;
else
*++cp = 0;