diff options
author | 2017-02-03 13:06:20 +0000 | |
---|---|---|
committer | 2017-02-03 13:06:20 +0000 | |
commit | 2add89e9676e1663ae26e4c5ee4454cd7a0074a5 (patch) | |
tree | 259dcec33c556f8256fd807695452374ff75b53d | |
parent | Add a window or pane id "tag" to each format tree and use it to separate (diff) | |
download | wireguard-openbsd-2add89e9676e1663ae26e4c5ee4454cd7a0074a5.tar.xz wireguard-openbsd-2add89e9676e1663ae26e4c5ee4454cd7a0074a5.zip |
whitespace fixes
-rw-r--r-- | sys/arch/arm64/stand/efiboot/exec.c | 20 |
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; |