about summary refs log tree commit diff stats
path: root/src/jid.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-01-13 00:05:25 +0000
committerJames Booth <boothj5@gmail.com>2013-01-13 00:05:25 +0000
commit1cc33cc4915b04d08604d959ff3286a753bfc813 (patch)
tree4f487e885fe7a428a90086b75a1ec52230773541 /src/jid.h
parent7733af1293a81162ee28a42f0a4ec281901b7feb (diff)
downloadprofani-tty-1cc33cc4915b04d08604d959ff3286a753bfc813.tar.gz
Changed Jid typedef to be explicit pointer
Diffstat (limited to 'src/jid.h')
-rw-r--r--src/jid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jid.h b/src/jid.h
index 608d7ef4..3b172025 100644
--- a/src/jid.h
+++ b/src/jid.h
@@ -33,9 +33,9 @@ struct jid_t {
     char *fulljid;
 };
 
-typedef struct jid_t *Jid;
+typedef struct jid_t Jid;
 
-Jid jid_create(const gchar * const str);
+Jid * jid_create(const gchar * const str);
 
 gboolean jid_is_room(const char * const room_jid);
 char * create_full_room_jid(const char * const room,