loader: stlye(9) nit: Space between return and the value

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2024-05-19 15:10:32 -06:00
parent 2d425b634f
commit 3f012b9508
2 changed files with 6 additions and 6 deletions

View File

@ -63,7 +63,7 @@ nullc_probe(struct console *cp)
static int
nullc_init(int arg)
{
return(0);
return (0);
}
static void
@ -74,11 +74,11 @@ nullc_putchar(int c)
static int
nullc_getchar(void)
{
return(-1);
return (-1);
}
static int
nullc_ischar(void)
{
return(0);
return (0);
}

View File

@ -71,7 +71,7 @@ static int
spinc_init(int arg)
{
return(parent->c_init(arg));
return (parent->c_init(arg));
}
static void
@ -97,12 +97,12 @@ static int
spinc_getchar(void)
{
return(-1);
return (-1);
}
static int
spinc_ischar(void)
{
return(0);
return (0);
}