wispr: Remove dead assignment
[framework/connectivity/connman.git] / tools / wispr.c
index b140506..122bea5 100644 (file)
@@ -2,7 +2,7 @@
  *
  *  Connection Manager
  *
- *  Copyright (C) 2007-2010  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2007-2012  Intel Corporation. All rights reserved.
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2 as
@@ -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);
 }