-Werror=unused-parameter

Change-Id: If1aad98965a90ac6b2e5488f21fe0d84c9b4af47
This commit is contained in:
Stephan Bergmann 2012-12-03 13:33:52 +01:00
parent c4c861b02d
commit c2500a004d

View file

@ -798,14 +798,17 @@ struct splash
/* Stubs that will never be called in this case */
void splash_draw_progress( struct splash* splash, int progress )
{
(void)splash; (void)progress;
}
void splash_destroy(struct splash* splash)
{
(void)splash;
}
struct splash* splash_create(rtl_uString* pAppPath, int argc, char** argv)
{
(void)pAppPath; (void)argc; (void)argv;
return NULL;
}