sparc64: fix sparse warning in btext.c
Fix following warning: btext.c:140:6: warning: symbol 'btext_drawchar' was not declared. Should it be static? Define the function static as it is only used in this file. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8df52620e6
commit
f1eabec577
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ static void scrollscreen(void)
|
||||||
}
|
}
|
||||||
#endif /* ndef NO_SCROLL */
|
#endif /* ndef NO_SCROLL */
|
||||||
|
|
||||||
void btext_drawchar(char c)
|
static void btext_drawchar(char c)
|
||||||
{
|
{
|
||||||
int cline = 0;
|
int cline = 0;
|
||||||
#ifdef NO_SCROLL
|
#ifdef NO_SCROLL
|
||||||
|
|
Loading…
Reference in a new issue