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 | 237eadd361a7ed1d2a49180056d12b57f6f3cc0a (patch) | |
| tree | db755bbddcdcdc8f4a3030299c534fd8a3b4a609 /protocols/twitter | |
| parent | c00dd7117be2a5fda92d6f7d72b0e4e54fa5d615 (diff) | |
Fix two compiler warnings.
Diffstat (limited to 'protocols/twitter')
| -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. | 
