summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2024-04-17 14:31:09 -0400
committerScott Murray <scott.murray@konsulko.com>2024-04-17 14:31:09 -0400
commit8e20d1cb7626dc6cb5b7fbd61714d4ed76d0e1e9 (patch)
tree70010dd3cfa7e6abc336fb20742b5cc4ea78fe6d
parent18607e2245d1e9ccfdd19db894e4cfdb52def303 (diff)
compositor: fix building with RDP disablednext
Fix declaration of stub function used when the RDP backend is not enabled. Bug-AGL: SPEC-5096, SPEC-5061 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
-rw-r--r--src/compositor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compositor.c b/src/compositor.c
index 277a63b..d82676b 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -1503,7 +1503,8 @@ load_rdp_backend(struct ivi_compositor *ivi, int *argc, char **argv,
}
#else
static int
-load_rdp_backend(struct ivi_compositor *ivi, int *argc, char **argv)
+load_rdp_backend(struct ivi_compositor *ivi, int *argc, char **argv,
+ enum weston_renderer_type renderer)
{
return -1;
}