From: Ray Strode Date: Wed, 6 Jun 2007 21:08:42 +0000 (-0400) Subject: fix up signature of plugin show splash vfunc X-Git-Tag: 0.1.0~203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9478db2d3d333abe569e9b87b3aa2c9be2c9d7a6;p=thirdparty%2Fplymouth.git fix up signature of plugin show splash vfunc --- diff --git a/src/ply-boot-splash-plugin.h b/src/ply-boot-splash-plugin.h index 798d9f10..6bb8c2da 100644 --- a/src/ply-boot-splash-plugin.h +++ b/src/ply-boot-splash-plugin.h @@ -35,7 +35,7 @@ typedef struct ply_boot_splash_plugin_t * (* create_plugin) (void); void (* destroy_plugin) (ply_boot_splash_plugin_t *plugin); - void (* show_splash_screen) (ply_boot_splash_plugin_t *plugin); + bool (* show_splash_screen) (ply_boot_splash_plugin_t *plugin); void (* update_status) (ply_boot_splash_plugin_t *plugin, const char *status); void (* hide_splash_screen) (ply_boot_splash_plugin_t *plugin);