wispr: Remove dead assignment
authorHenrique Dante de Almeida <hdante@profusion.mobi>
Tue, 8 May 2012 19:21:03 +0000 (16:21 -0300)
committerPatrik Flykt <patrik.flykt@linux.intel.com>
Wed, 9 May 2012 14:18:32 +0000 (17:18 +0300)
tools/wispr.c

index 69ee871..122bea5 100644 (file)
@@ -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);
 }