input: Add a seat name parameter to weston_seat_init
diff --git a/src/compositor-headless.c b/src/compositor-headless.c
index e250b98..c9194d0 100644
--- a/src/compositor-headless.c
+++ b/src/compositor-headless.c
@@ -172,7 +172,7 @@
 	if (weston_compositor_init(&c->base, display, argc, argv, config) < 0)
 		goto err_free;
 
-	weston_seat_init(&c->fake_seat, &c->base);
+	weston_seat_init(&c->fake_seat, &c->base, "default");
 
 	c->base.destroy = headless_destroy;
 	c->base.restore = headless_restore;