aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-history-window.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2003-04-21 03:21:51 +0800
committerXan Lopez <xan@src.gnome.org>2003-04-21 03:21:51 +0800
commit73d8a454b477fff54652bd94a773cddeb028dbf2 (patch)
treef8a64d18f353aeae92ef6f83ef049acd5e240188 /src/ephy-history-window.c
parentbcaa7e7ec1f0bdd0fa4707854aeb7378031368fd (diff)
downloadgsoc2013-epiphany-73d8a454b477fff54652bd94a773cddeb028dbf2.tar
gsoc2013-epiphany-73d8a454b477fff54652bd94a773cddeb028dbf2.tar.gz
gsoc2013-epiphany-73d8a454b477fff54652bd94a773cddeb028dbf2.tar.bz2
gsoc2013-epiphany-73d8a454b477fff54652bd94a773cddeb028dbf2.tar.lz
gsoc2013-epiphany-73d8a454b477fff54652bd94a773cddeb028dbf2.tar.xz
gsoc2013-epiphany-73d8a454b477fff54652bd94a773cddeb028dbf2.tar.zst
gsoc2013-epiphany-73d8a454b477fff54652bd94a773cddeb028dbf2.zip
Use g_list_free instead of g_free.
Use g_list_free instead of g_free.
Diffstat (limited to 'src/ephy-history-window.c')
-rw-r--r--src/ephy-history-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c
index 52e213e21..1e8fe788d 100644
--- a/src/ephy-history-window.c
+++ b/src/ephy-history-window.c
@@ -272,7 +272,7 @@ cmd_copy (EggAction *action,
gtk_clipboard_set_text (gtk_clipboard_get (GDK_SELECTION_CLIPBOARD), tmp, -1);
}
- g_free (selection);
+ g_list_free (selection);
}
}