Kaydet (Commit) c2500a00 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=unused-parameter

Change-Id: If1aad98965a90ac6b2e5488f21fe0d84c9b4af47
üst c4c861b0
...@@ -798,14 +798,17 @@ struct splash ...@@ -798,14 +798,17 @@ struct splash
/* Stubs that will never be called in this case */ /* Stubs that will never be called in this case */
void splash_draw_progress( struct splash* splash, int progress ) void splash_draw_progress( struct splash* splash, int progress )
{ {
(void)splash; (void)progress;
} }
void splash_destroy(struct splash* splash) void splash_destroy(struct splash* splash)
{ {
(void)splash;
} }
struct splash* splash_create(rtl_uString* pAppPath, int argc, char** argv) struct splash* splash_create(rtl_uString* pAppPath, int argc, char** argv)
{ {
(void)pAppPath; (void)argc; (void)argv;
return NULL; return NULL;
} }
......
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