about summary refs log tree commit diff stats
path: root/src/jid.c
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.c
parent7733af1293a81162ee28a42f0a4ec281901b7feb (diff)
downloadprofani-tty-1cc33cc4915b04d08604d959ff3286a753bfc813.tar.gz
Changed Jid typedef to be explicit pointer
Diffstat (limited to 'src/jid.c')
-rw-r--r--src/jid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jid.c b/src/jid.c
index 839cbe68..4eef9384 100644
--- a/src/jid.c
+++ b/src/jid.c
@@ -26,10 +26,10 @@
 
 #include "jid.h"
 
-Jid
+Jid *
 jid_create(const gchar * const str)
 {
-    Jid result = NULL;
+    Jid *result = NULL;
 
     if (str == NULL) {
         return NULL;