Commit f1eabec5 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by David S. Miller

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: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8df52620
...@@ -137,7 +137,7 @@ static void scrollscreen(void) ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment