From: Ray Strode Date: Thu, 21 Aug 2008 21:12:38 +0000 (-0400) Subject: Fix up compile error in boot server test X-Git-Tag: 0.6.0~184 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3ec877aae021c79fa86fe342a3591309601fb87;p=thirdparty%2Fplymouth.git Fix up compile error in boot server test --- diff --git a/src/ply-boot-server.c b/src/ply-boot-server.c index 9d2e1937..8d6dee0a 100644 --- a/src/ply-boot-server.c +++ b/src/ply-boot-server.c @@ -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);