diff options
author | Russ Allbery <eagle@eyrie.org> | 2020-05-17 20:21:59 -0700 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2020-05-17 20:21:59 -0700 |
commit | 108233784827d54361c99c67eaee9e668010b3c3 (patch) | |
tree | 329ad2e791fb27ecc037259c16b922be03e977d0 /client/wallet-rekey.c | |
parent | 201ac5003d4fba8b15dbb64628782970bd3422fd (diff) |
Reformat all C code with clang-format-10
Diffstat (limited to 'client/wallet-rekey.c')
-rw-r--r-- | client/wallet-rekey.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/wallet-rekey.c b/client/wallet-rekey.c index 2aedf57..13e25a8 100644 --- a/client/wallet-rekey.c +++ b/client/wallet-rekey.c @@ -3,7 +3,7 @@ * * Written by Russ Allbery <eagle@eyrie.org> * and Jon Robertson <jonrober@stanford.edu> - * Copyright 2018 Russ Allbery <eagle@eyrie.org> + * Copyright 2018, 2020 Russ Allbery <eagle@eyrie.org> * Copyright 2010 * The Board of Trustees of the Leland Stanford Junior University * @@ -14,12 +14,12 @@ #include <portable/krb5.h> #include <portable/system.h> -#include <remctl.h> #include <errno.h> +#include <remctl.h> #include <client/internal.h> -#include <util/messages.h> #include <util/messages-krb5.h> +#include <util/messages.h> /* * Usage message. Use as a format and pass the port number and default server @@ -41,7 +41,7 @@ Options:\n\ /* * Display the usage message for wallet-rekey. */ -static void __attribute__((__noreturn__)) +__attribute__((__noreturn__)) static void usage(int status) { fprintf((status == 0) ? stdout : stderr, usage_message, WALLET_PORT, |