diff options
author | Xan Lopez <xan@src.gnome.org> | 2003-05-28 04:22:02 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2003-05-28 04:22:02 +0800 |
commit | 06cdf72ccc3d448d86c0ace29d74c06376572ecf (patch) | |
tree | 88296ccbaef51931e2194e32b4f03cf497554476 /lib/widgets | |
parent | 7b931423fb733730ba74abd4207709974e6f67d9 (diff) | |
download | gsoc2013-epiphany-06cdf72ccc3d448d86c0ace29d74c06376572ecf.tar gsoc2013-epiphany-06cdf72ccc3d448d86c0ace29d74c06376572ecf.tar.gz gsoc2013-epiphany-06cdf72ccc3d448d86c0ace29d74c06376572ecf.tar.bz2 gsoc2013-epiphany-06cdf72ccc3d448d86c0ace29d74c06376572ecf.tar.lz gsoc2013-epiphany-06cdf72ccc3d448d86c0ace29d74c06376572ecf.tar.xz gsoc2013-epiphany-06cdf72ccc3d448d86c0ace29d74c06376572ecf.tar.zst gsoc2013-epiphany-06cdf72ccc3d448d86c0ace29d74c06376572ecf.zip |
Try to fix dereferencing type-punned warning.
Try to fix dereferencing type-punned warning.
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/ephy-node-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c index f42ef9955..31bcac228 100644 --- a/lib/widgets/ephy-node-view.c +++ b/lib/widgets/ephy-node-view.c @@ -892,7 +892,7 @@ ephy_node_view_get_selection (EphyNodeView *view) gtk_tree_selection_selected_foreach (selection, (GtkTreeSelectionForeachFunc) get_selection, - (void **) &list); + (gpointer) &list); } return list; |