git: f759479e2799 - stable/12 - loader: cstyle cleanup of bootstrap.h did miss a bit
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 08 Oct 2021 06:11:15 UTC
The branch stable/12 has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=f759479e27994161c30f61de2c1741da6d065bd8
commit f759479e27994161c30f61de2c1741da6d065bd8
Author: Toomas Soome <tsoome@FreeBSD.org>
AuthorDate: 2020-11-08 09:49:51 +0000
Commit: Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2021-10-08 05:24:28 +0000
loader: cstyle cleanup of bootstrap.h did miss a bit
correct small issues - misplaced comment and typos.
(cherry picked from commit 83a252c6a15d44cd574a9ef9ba37a77a3464296f)
---
stand/common/bootstrap.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/stand/common/bootstrap.h b/stand/common/bootstrap.h
index af71fcb78436..952d41527dd5 100644
--- a/stand/common/bootstrap.h
+++ b/stand/common/bootstrap.h
@@ -112,10 +112,10 @@ struct console
/* reinit XXX may need more args */
int (* c_init)(int arg);
/* emit c */
- void (* c_out)(int c);
- int (* c_in)(void);
+ void (* c_out)(int c);
/* wait for and return input */
- /* return nonzer if input waiting */
+ int (* c_in)(void);
+ /* return nonzero if input waiting */
int (* c_ready)(void);
};
extern struct console *consoles[];