diff options
author | Joshua Lock <josh@linux.intel.com> | 2009-10-15 14:19:56 +0100 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2009-10-15 23:46:43 +0100 |
commit | 6cee11af1cebbd5170448c672b7175637a35add4 (patch) | |
tree | 1b19ad0d7626f7893a17d8cfd91db6d2e6bf6475 /moblin/moblin-panel.c | |
parent | b7f82247cbb33f658cc3a4b09cf748ea186e3be6 (diff) | |
download | gnome-bluetooth-6cee11af1cebbd5170448c672b7175637a35add4.tar.gz |
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
Diffstat (limited to 'moblin/moblin-panel.c')
-rw-r--r-- | 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 8c8c8ccb..165ad822 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); |