about summary refs log tree commit diff stats
path: root/src/xmpp/roster.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-11-10 18:48:55 +0000
committerJames Booth <boothj5@gmail.com>2013-11-10 18:48:55 +0000
commitc5f76721ce9d10b127d54e127ac34e555c749465 (patch)
treeae9e29d336aca586c993d0487c2847bb33bb9a19 /src/xmpp/roster.c
parentbe653667e4d250c7ec28f2eab5026e63e95f5453 (diff)
downloadprofani-tty-c5f76721ce9d10b127d54e127ac34e555c749465.tar.gz
Fixed compile error for -Wduplicate-decl-specifier on OSX
Diffstat (limited to 'src/xmpp/roster.c')
-rw-r--r--src/xmpp/roster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/roster.c b/src/xmpp/roster.c
index c073464d..5fbb7be7 100644
--- a/src/xmpp/roster.c
+++ b/src/xmpp/roster.c
@@ -518,7 +518,7 @@ roster_barejid_from_name(const char * const name)
 }
 
 PContact
-roster_get_contact(const char const *barejid)
+roster_get_contact(const char * const barejid)
 {
     return g_hash_table_lookup(contacts, barejid);
 }