summaryrefslogtreecommitdiff
path: root/src/contact.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/contact.c')
-rw-r--r--src/contact.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/contact.c b/src/contact.c
index 7d0d621..a84890c 100644
--- a/src/contact.c
+++ b/src/contact.c
@@ -109,7 +109,7 @@ int contact_add(struct contacts *contacts,
* Remove a contact
*
* @param contacts Contacts container
- * @param contactp Pointer to the contact to be removed
+ * @param contact Contact to be removed
*/
void contact_remove(struct contacts *contacts, struct contact *contact)
{
@@ -125,6 +125,7 @@ void contact_remove(struct contacts *contacts, struct contact *contact)
mem_deref(contact);
}
+
void contact_set_update_handler(struct contacts *contacts,
contact_update_h *updateh, void *arg)
{