From 26806995a25bcdb296357ec90a4be6a9e5a88f46 Mon Sep 17 00:00:00 2001 From: Henrique Dante de Almeida Date: Tue, 8 May 2012 16:21:03 -0300 Subject: [PATCH] wispr: Remove dead assignment --- tools/wispr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/wispr.c b/tools/wispr.c index 69ee871..122bea5 100644 --- a/tools/wispr.c +++ b/tools/wispr.c @@ -290,7 +290,7 @@ static void parser_callback(const char *str, gpointer user_data) result = g_markup_parse_context_parse(context, str, strlen(str), NULL); if (result == TRUE) - result = g_markup_parse_context_end_parse(context, NULL); + g_markup_parse_context_end_parse(context, NULL); g_markup_parse_context_free(context); } -- 2.7.4