[gnome-bluetooth] Fix compiler warning in Moblin panel



commit 6cee11af1cebbd5170448c672b7175637a35add4
Author: Joshua Lock <josh linux intel com>
Date:   Thu Oct 15 14:19:56 2009 +0100

    Fix compiler warning in Moblin panel
    
    GCC warns when we free variables which are declared const
    
    https://bugzilla.gnome.org/show_bug.cgi?id=598589

 moblin/moblin-panel.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/moblin/moblin-panel.c b/moblin/moblin-panel.c
index 8c8c8cc..165ad82 100644
--- a/moblin/moblin-panel.c
+++ b/moblin/moblin-panel.c
@@ -827,7 +827,7 @@ browse_to_text (GtkTreeViewColumn *column, GtkCellRenderer *cell,
 {
 	gboolean found = FALSE;
 	guint i;
-	const char **uuids = NULL;
+	char **uuids = NULL;
 
 	gtk_tree_model_get (model, iter, BLUETOOTH_COLUMN_UUIDS, &uuids, -1);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]