]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
Remove superfluous asterisk in function prototype
authorRay Strode <rstrode@redhat.com>
Mon, 2 Jun 2008 14:19:18 +0000 (10:19 -0400)
committerRay Strode <rstrode@redhat.com>
Mon, 2 Jun 2008 14:19:18 +0000 (10:19 -0400)
We were passing a pointer to a function pointer instead
of just a function pointer.

src/ply-boot-splash.c
src/ply-boot-splash.h

index 5000fc4d2476ad481ecc56cc19f44da3ae4c43a1..29902dbac4e39f027bace90c2115481802c0ae30 100644 (file)
@@ -216,7 +216,7 @@ ply_boot_splash_update_output (ply_boot_splash_t *splash,
 
 void
 ply_boot_splash_ask_for_password (ply_boot_splash_t *splash,
-                                  ply_boot_splash_password_answer_handler_t *answer_handler,
+                                  ply_boot_splash_password_answer_handler_t answer_handler,
                                   void              *answer_data)
 {
 
index 5c26caf9aeba3ea3294d2c9bc9a32544146ac8bb..64006b4f7f99e898dd05555d59f1f8e5df4f7e08 100644 (file)
@@ -46,7 +46,7 @@ void ply_boot_splash_update_output (ply_boot_splash_t *splash,
                                     size_t             size);
 
 void ply_boot_splash_ask_for_password (ply_boot_splash_t *splash,
-                                       ply_boot_splash_password_answer_handler_t *answer_handler,
+                                       ply_boot_splash_password_answer_handler_t answer_handler,
                                        void              *answer_data);
 void ply_boot_splash_hide (ply_boot_splash_t *splash);
 void ply_boot_splash_attach_to_event_loop (ply_boot_splash_t *splash,