summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2008-06-02 10:19:18 -0400
committerRay Strode <rstrode@redhat.com>2008-06-02 10:19:18 -0400
commit9cb9af7c203bca42220b8ebdccd3f01a2e740ead (patch)
tree2cbfa5b7ee8d81afc4416a8612e47461b6a82d7a /src
parentb4842e3c748c4e1eb396e15547c927faa6ba40c6 (diff)
downloadplymouth-9cb9af7c203bca42220b8ebdccd3f01a2e740ead.tar.gz
plymouth-9cb9af7c203bca42220b8ebdccd3f01a2e740ead.tar.xz
plymouth-9cb9af7c203bca42220b8ebdccd3f01a2e740ead.zip
Remove superfluous asterisk in function prototype
We were passing a pointer to a function pointer instead of just a function pointer.
Diffstat (limited to 'src')
-rw-r--r--src/ply-boot-splash.c2
-rw-r--r--src/ply-boot-splash.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ply-boot-splash.c b/src/ply-boot-splash.c
index 5000fc4..29902db 100644
--- a/src/ply-boot-splash.c
+++ b/src/ply-boot-splash.c
@@ -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)
{
diff --git a/src/ply-boot-splash.h b/src/ply-boot-splash.h
index 5c26caf..64006b4 100644
--- a/src/ply-boot-splash.h
+++ b/src/ply-boot-splash.h
@@ -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,