svn commit: r367480 - head/stand/common

Toomas Soome tsoome at FreeBSD.org
Sun Nov 8 09:49:52 UTC 2020


Author: tsoome
Date: Sun Nov  8 09:49:51 2020
New Revision: 367480
URL: https://svnweb.freebsd.org/changeset/base/367480

Log:
  loader: cstyle cleanup of bootstrap.h did miss a bit
  
  correct small issues - misplaced comment and typos.

Modified:
  head/stand/common/bootstrap.h

Modified: head/stand/common/bootstrap.h
==============================================================================
--- head/stand/common/bootstrap.h	Sun Nov  8 09:35:41 2020	(r367479)
+++ head/stand/common/bootstrap.h	Sun Nov  8 09:49:51 2020	(r367480)
@@ -111,10 +111,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[];


More information about the svn-src-all mailing list