Skip to content

Commit

Permalink
Fix warning: passing argument 1 of 'gtk_tree_store_set' from incompat…
Browse files Browse the repository at this point in the history
…ible pointer type
  • Loading branch information
Laurent Monin committed Jul 23, 2008
1 parent d576f7b commit 90970bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view_dir_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ gint vdtree_populate_path_by_iter(ViewDir *vd, GtkTreeIter *iter, gint force, Fi
if (cnd->expanded && cnd->version != fd->version &&
vdtree_populate_path_by_iter(vd, &child, FALSE, target_fd))
{
gtk_tree_store_set(store, &child, DIR_COLUMN_NAME, fd->name, -1);
gtk_tree_store_set(GTK_TREE_STORE(store), &child, DIR_COLUMN_NAME, fd->name, -1);
cnd->version = fd->version;
}

Expand Down

0 comments on commit 90970bd

Please sign in to comment.