Skip to content
Snippets Groups Projects
Commit 081c975a authored by Andrew Chadwick's avatar Andrew Chadwick Committed by Alexander Schwinn
Browse files

Fix broken build with gcc7 : “declaration is not a statement”

Followup to !256.

Fixes broken build with @olh’s compiler and options: “error: a label can only be part of a statement and a
declaration is not a statement”

!256 (comment 49552)

Moving declaration from unside a 'case' to the start of the function
parent 919605c6
No related branches found
No related tags found
No related merge requests found
......@@ -776,15 +776,16 @@ thunar_list_model_get_value (GtkTreeModel *model,
gint column,
GValue *value)
{
ThunarGroup *group;
const gchar *device_type;
const gchar *name;
const gchar *real_name;
ThunarUser *user;
ThunarFile *file;
GFile *g_file;
GFile *g_file_parent;
gchar *str;
ThunarGroup *group;
const gchar *device_type;
const gchar *name;
const gchar *real_name;
ThunarUser *user;
ThunarFile *file;
ThunarFolder *folder;
GFile *g_file;
GFile *g_file_parent;
gchar *str;
_thunar_return_if_fail (THUNAR_IS_LIST_MODEL (model));
_thunar_return_if_fail (iter->stamp == (THUNAR_LIST_MODEL (model))->stamp);
......@@ -825,8 +826,6 @@ thunar_list_model_get_value (GtkTreeModel *model,
break;
case THUNAR_COLUMN_LOCATION:
ThunarFolder *folder;
g_value_init (value, G_TYPE_STRING);
g_file_parent = g_file_get_parent (thunar_file_get_file (file));
str = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment