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 69ee8718b7a377ad9ca55a5aebad7b81c9c6f8dc..122bea501324e7b7c39bd8fa73d3e64a41c0bb71 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);
 }