summaryrefslogtreecommitdiff
path: root/src/caja-query-editor.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2017-03-28 12:32:09 +0300
committermonsta <[email protected]>2017-03-28 12:32:59 +0300
commitb20eb25ee674f3d909491e5a6e6f411deca65b57 (patch)
tree4f2c44da2ece8fb430ab735d253dcba2658c8afc /src/caja-query-editor.c
parente3953e675e45d59ae0ef720e4bf65ea6bab97fb4 (diff)
downloadcaja-b20eb25ee674f3d909491e5a6e6f411deca65b57.tar.bz2
caja-b20eb25ee674f3d909491e5a6e6f411deca65b57.tar.xz
fix build warning (no const needed there)
Diffstat (limited to 'src/caja-query-editor.c')
-rw-r--r--src/caja-query-editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caja-query-editor.c b/src/caja-query-editor.c
index bb0f6036..d0f048ec 100644
--- a/src/caja-query-editor.c
+++ b/src/caja-query-editor.c
@@ -462,7 +462,7 @@ tags_add_rows_from_query (CajaQueryEditor *editor,
CajaQueryEditorRow *row;
row = caja_query_editor_add_row (editor, CAJA_QUERY_EDITOR_ROW_TAGS);
- const gchar *tags_str = xattr_tags_list_to_str (tags);
+ gchar *tags_str = xattr_tags_list_to_str (tags);
g_list_free_full (tags, g_free);
gtk_entry_set_text (GTK_ENTRY (row->type_widget), tags_str);