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/e-plugin.c | |
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/e-plugin.c')
-rw-r--r-- | e-util/e-plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |