diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2012-09-22 13:55:02 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2012-09-22 13:55:02 +0100 |
commit | 6bef2110ddeb9e1f8e8233a4e61b8917fb939b29 (patch) | |
tree | 26c6808275a1daf0c07b794bcb694c8370299c91 /protocols/msn/ns.c | |
parent | 9c77fbf0850c364c31f80e30c54137252291ec91 (diff) |
Fixed syntax error introduced by latest merge.
Diffstat (limited to 'protocols/msn/ns.c')
-rw-r--r-- | protocols/msn/ns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/msn/ns.c b/protocols/msn/ns.c index f2fc561f..a90c8a9d 100644 --- a/protocols/msn/ns.c +++ b/protocols/msn/ns.c @@ -695,7 +695,7 @@ static int msn_ns_message( struct msn_handler_data *handler, char *msg, int msgl if( !xml ) return 1; - md = xt_from_string( xml ); + md = xt_from_string( xml, 0 ); if( !md ) return 1; |