summaryrefslogtreecommitdiffstats
path: root/common/rop3.c
diff options
context:
space:
mode:
authorFabiano FidĂȘncio <fidencio@redhat.com>2014-09-02 14:12:30 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2014-09-18 13:15:29 +0200
commitc8b4c5ec49f4dbf497d9ff92211cfeb9fbd2c4fb (patch)
treeffb5edeee0f657f52c20ae82e00103abe8f638d3 /common/rop3.c
parentdde1c62a9166f337722785b7b4f38c8b2dbbd495 (diff)
downloadspice-common-c8b4c5ec49f4dbf497d9ff92211cfeb9fbd2c4fb.tar.gz
spice-common-c8b4c5ec49f4dbf497d9ff92211cfeb9fbd2c4fb.tar.xz
spice-common-c8b4c5ec49f4dbf497d9ff92211cfeb9fbd2c4fb.zip
common: Fix -Wunused-parameter
Diffstat (limited to 'common/rop3.c')
-rw-r--r--common/rop3.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/common/rop3.c b/common/rop3.c
index d5b46db..97bfe0c 100644
--- a/common/rop3.c
+++ b/common/rop3.c
@@ -43,15 +43,19 @@ static rop3_test_handler_t rop3_test_handlers_32[ROP3_NUM_OPS];
static rop3_test_handler_t rop3_test_handlers_16[ROP3_NUM_OPS];
-static void default_rop3_with_pattern_handler(pixman_image_t *d, pixman_image_t *s,
- SpicePoint *src_pos, pixman_image_t *p,
- SpicePoint *pat_pos)
+static void default_rop3_with_pattern_handler(SPICE_GNUC_UNUSED pixman_image_t *d,
+ SPICE_GNUC_UNUSED pixman_image_t *s,
+ SPICE_GNUC_UNUSED SpicePoint *src_pos,
+ SPICE_GNUC_UNUSED pixman_image_t *p,
+ SPICE_GNUC_UNUSED SpicePoint *pat_pos)
{
spice_critical("not implemented");
}
-static void default_rop3_withe_color_handler(pixman_image_t *d, pixman_image_t *s, SpicePoint *src_pos,
- uint32_t rgb)
+static void default_rop3_withe_color_handler(SPICE_GNUC_UNUSED pixman_image_t *d,
+ SPICE_GNUC_UNUSED pixman_image_t *s,
+ SPICE_GNUC_UNUSED SpicePoint *src_pos,
+ SPICE_GNUC_UNUSED uint32_t rgb)
{
spice_critical("not implemented");
}