From ec98bff16d5830a5ee69daf0dc433f7e82d88045 Mon Sep 17 00:00:00 2001 From: Henrique Dante de Almeida Date: Tue, 8 May 2012 16:20:59 -0300 Subject: [PATCH] wispr: Remove dead assignment --- src/wispr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wispr.c b/src/wispr.c index 4fe9e75..d43763d 100644 --- a/src/wispr.c +++ b/src/wispr.c @@ -386,7 +386,7 @@ static void xml_wispr_parser_callback(const char *str, gpointer user_data) result = g_markup_parse_context_parse(parser_context, str, strlen(str), NULL); if (result == TRUE) - result = g_markup_parse_context_end_parse(parser_context, NULL); + g_markup_parse_context_end_parse(parser_context, NULL); g_markup_parse_context_free(parser_context); } -- 2.7.4