diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-22 09:07:48 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-22 09:07:48 +0100 |
commit | bd599b9aeabee36ac6fdb379ca09aec27cce13a4 (patch) | |
tree | f303f6cad7d76899d4ff1c9dbb77282eb5dbd5b4 /protocols/twitter/twitter_lib.c | |
parent | 1aa74f559af18e06195f34b721d65d69c29fcc0f (diff) |
Fix two compiler warnings.
Diffstat (limited to 'protocols/twitter/twitter_lib.c')
-rw-r--r-- | protocols/twitter/twitter_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/twitter/twitter_lib.c b/protocols/twitter/twitter_lib.c index 22d2a3bd..f86e1f15 100644 --- a/protocols/twitter/twitter_lib.c +++ b/protocols/twitter/twitter_lib.c @@ -372,7 +372,7 @@ static xt_status twitter_xt_get_user_list( struct xt_node *node, struct twitter_ */ static xt_status twitter_xt_get_status( struct xt_node *node, struct twitter_xml_status *txs ) { - struct xt_node *child, *rt; + struct xt_node *child, *rt = NULL; gboolean truncated = FALSE; // Walk over the nodes children. |