]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
move function around to fix build transition
authorRay Strode <rstrode@redhat.com>
Tue, 23 Sep 2008 13:26:36 +0000 (09:26 -0400)
committerRay Strode <rstrode@redhat.com>
Tue, 23 Sep 2008 13:26:36 +0000 (09:26 -0400)
src/plugins/splash/text/plugin.c

index 14b3c70bff00ce5c7699c62b9d10e560926cf643..79887c532175ee71b4189e0ec9a96304efcef3be 100644 (file)
@@ -82,6 +82,14 @@ create_plugin (void)
   return plugin;
 }
 
+static void
+detach_from_event_loop (ply_boot_splash_plugin_t *plugin)
+{
+  plugin->loop = NULL;
+
+  ply_trace ("detaching from event loop");
+}
+
 void
 destroy_plugin (ply_boot_splash_plugin_t *plugin)
 {
@@ -147,14 +155,6 @@ stop_animation (ply_boot_splash_plugin_t *plugin)
   ply_text_pulser_stop (plugin->pulser);
 }
 
-static void
-detach_from_event_loop (ply_boot_splash_plugin_t *plugin)
-{
-  plugin->loop = NULL;
-
-  ply_trace ("detaching from event loop");
-}
-
 void
 on_keyboard_input (ply_boot_splash_plugin_t *plugin,
                    const char               *keyboard_input,