diff options
author | JP Rosevear <jpr@novell.com> | 2004-10-08 15:00:11 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-10-08 15:00:11 +0800 |
commit | 65ae86930b7b3da58498265dce7a2275985bf4b6 (patch) | |
tree | 8a11b0908aa657d0abc7eb5d686ff04cce95e3e2 /e-util | |
parent | d61821dda2ab26c13ddeb3f86ebceb1f82cc28bd (diff) | |
download | gsoc2013-evolution-65ae86930b7b3da58498265dce7a2275985bf4b6.tar.gz gsoc2013-evolution-65ae86930b7b3da58498265dce7a2275985bf4b6.tar.zst gsoc2013-evolution-65ae86930b7b3da58498265dce7a2275985bf4b6.zip |
fix typo
2004-10-08 JP Rosevear <jpr@novell.com>
* e-plugin.c (ep_load): fix typo
svn path=/trunk/; revision=27505
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 4 | ||||
-rw-r--r-- | e-util/e-plugin.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index d27b83f09e..6fe94df6ce 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,7 @@ +2004-10-08 JP Rosevear <jpr@novell.com> + + * e-plugin.c (ep_load): fix typo + 2004-10-08 Not Zed <NotZed@Ximian.com> * e-plugin.c (ep_load): handle wrong root element properly. From diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c index 0524fcc81f..c2481098f9 100644 --- a/e-util/e-plugin.c +++ b/e-util/e-plugin.c @@ -221,7 +221,7 @@ ep_load(const char *filename) root = xmlDocGetRootElement(doc); if (strcmp(root->name, "e-plugin-list") != 0) { g_warning("No <e-plugin-list> root element: %s", filename); - xmlFreedoc(doc); + xmlFreeDoc(doc); return -1; } |