private function made static

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7953 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-11-18 08:57:32 +00:00
parent 3b5449f303
commit fe2c40aedb

View file

@ -37,9 +37,8 @@
#endif
void internal_splash(struct screen * screen,
bool center, const char *fmt, va_list ap)
static void splash(struct screen * screen,
bool center, const char *fmt, va_list ap)
{
char *next;
char *store=NULL;
@ -190,7 +189,7 @@ void gui_splash(struct screen * screen, int ticks,
{
va_list ap;
va_start( ap, fmt );
internal_splash(screen, center, fmt, ap);
splash(screen, center, fmt, ap);
va_end( ap );
if(ticks)
@ -203,7 +202,7 @@ void gui_syncsplash(int ticks, bool center, const char *fmt, ...)
int i;
va_start( ap, fmt );
FOR_NB_SCREENS(i)
internal_splash(&(screens[i]), center, fmt, ap);
splash(&(screens[i]), center, fmt, ap);
va_end( ap );
if(ticks)