mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-01 04:28:01 +02:00
Fix up compile error in boot server test
This commit is contained in:
parent
6f60a782e5
commit
d3ec877aae
1 changed files with 7 additions and 0 deletions
|
|
@ -525,6 +525,12 @@ on_quit (ply_event_loop_t *loop)
|
|||
ply_event_loop_exit (loop, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
on_error (ply_event_loop_t *loop)
|
||||
{
|
||||
printf ("got error starting service\n");
|
||||
}
|
||||
|
||||
static char *
|
||||
on_ask_for_password (ply_event_loop_t *loop)
|
||||
{
|
||||
|
|
@ -551,6 +557,7 @@ main (int argc,
|
|||
(ply_boot_server_hide_splash_handler_t) on_hide_splash,
|
||||
(ply_boot_server_newroot_handler_t) on_newroot,
|
||||
(ply_boot_server_system_initialized_handler_t) on_system_initialized,
|
||||
(ply_boot_server_error_handler_t) on_error,
|
||||
(ply_boot_server_quit_handler_t) on_quit,
|
||||
loop);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue