diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-20 20:09:44 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-20 20:09:44 +0200 |
commit | 9c1a1cfc44d5ce808e1d2128ab6404927331f3c5 (patch) | |
tree | a8846a3b235f9d4b7b859c40824cfe1054669ca1 | |
parent | 2c5b81a377f1003964a88e51d1732930c250bd3c (diff) |
Minor reformatting fix
-rw-r--r-- | main.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -44,12 +44,12 @@ static const char *usage_s = "Usage: %s [-d digits] [-p period] [secret ...]\n" " %s [-u] [uri ...]\n"; -static void usage(void); -static void totp_print(struct totp_config, char *, bool); -static bool strtol_safe(long *, const char *); -static bool totp(struct totp_config, uint32_t *); -static uint32_t pow32(uint32_t, uint32_t); -static bool uri_parse(struct totp_config *, const char *); +static void usage(void); +static void totp_print(struct totp_config, char *, bool); +static bool strtol_safe(long *, const char *); +static bool totp(struct totp_config, uint32_t *); +static uint32_t pow32(uint32_t, uint32_t); +static bool uri_parse(struct totp_config *, const char *); void usage(void) |