diff options
author | Warner Losh <imp@FreeBSD.org> | 2024-01-28 18:36:21 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2024-01-28 20:04:31 +0000 |
commit | dcc20bced51583df83e49af269ff7be5fb48dbf8 (patch) | |
tree | 6a6d94bcb7612e7106b5f31b44bcbf66c48ca7ef /stand/common | |
parent | 551921a757758353af51cd0283e9e4bcee9a84d2 (diff) |
stand: Use modern function definitions
Use modern function definitions for functions with no args.
Sponsored by: Netflix
Diffstat (limited to 'stand/common')
-rw-r--r-- | stand/common/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/common/boot.c b/stand/common/boot.c index db4bb4fc2ea8..658da097b9a9 100644 --- a/stand/common/boot.c +++ b/stand/common/boot.c @@ -160,7 +160,7 @@ command_autoboot(int argc, char *argv[]) * we haven't tried already, try now. */ void -autoboot_maybe() +autoboot_maybe(void) { char *cp; |