summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/unx/source/splashx.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/unx/source/splashx.c b/desktop/unx/source/splashx.c
index b08ba4804877..6dd2fa298865 100644
--- a/desktop/unx/source/splashx.c
+++ b/desktop/unx/source/splashx.c
@@ -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;
}