aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/pugl_x11_cairo.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-07-27 13:36:51 +0200
committerDavid Robillard <d@drobilla.net>2019-07-28 15:01:26 +0200
commite7236e4a5ff6e7d28792d6ab8bee43c2024a9a53 (patch)
tree4f8808389f468107fe41abe0da4b6698650cb413 /pugl/pugl_x11_cairo.c
parent4c4b388fab18b12c0cc915238f844eb78b9ff21d (diff)
downloadpugl-e7236e4a5ff6e7d28792d6ab8bee43c2024a9a53.tar.gz
pugl-e7236e4a5ff6e7d28792d6ab8bee43c2024a9a53.tar.bz2
pugl-e7236e4a5ff6e7d28792d6ab8bee43c2024a9a53.zip
Fix unused parameter warnings and prevent rot
Diffstat (limited to 'pugl/pugl_x11_cairo.c')
-rw-r--r--pugl/pugl_x11_cairo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pugl/pugl_x11_cairo.c b/pugl/pugl_x11_cairo.c
index c62621e..53304d8 100644
--- a/pugl/pugl_x11_cairo.c
+++ b/pugl/pugl_x11_cairo.c
@@ -89,13 +89,13 @@ puglX11CairoDestroy(PuglView* view)
}
static int
-puglX11CairoEnter(PuglView* view)
+puglX11CairoEnter(PuglView* PUGL_UNUSED(view))
{
return 0;
}
static int
-puglX11CairoLeave(PuglView* view, bool flush)
+puglX11CairoLeave(PuglView* PUGL_UNUSED(view), bool PUGL_UNUSED(flush))
{
return 0;
}