summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-12-03 13:33:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-12-03 13:33:52 +0100
commitc2500a004dbb4830202b49d8031e35e66c7c739d (patch)
tree9bda3d37580bea5117ed038309d8eda463d11af9 /desktop
parentc4c861b02d629739f19212e1757803dc1aab302e (diff)
-Werror=unused-parameter
Change-Id: If1aad98965a90ac6b2e5488f21fe0d84c9b4af47
Diffstat (limited to 'desktop')
-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;
}