aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-xml-hash-utils.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-07-23 22:55:52 +0800
committerDan Winship <danw@src.gnome.org>2003-07-23 22:55:52 +0800
commit64a3e0a91c24b5b6677bfc1149505e620ddc4875 (patch)
treef29d109cd8938e517dfdd6c046da36160e07052d /e-util/e-xml-hash-utils.c
parentc4e2afa4a076769c3bd22393edd6ca8710f96c2e (diff)
downloadgsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.tar
gsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.tar.gz
gsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.tar.bz2
gsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.tar.lz
gsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.tar.xz
gsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.tar.zst
gsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.zip
Fix a non-ANSI switch label.
* e-component-listener.c (connection_listen_cb): Fix a non-ANSI switch label. * e-gui-utils.c: only include "art/empty.xpm" if HAVE_LIBGNOMEUI_GNOME_ICON_LOOKUP_H isn't defined * e-xml-hash-utils.c (e_xml_to_hash): Deconstify a non-const variable to fix a warning. svn path=/trunk/; revision=21901
Diffstat (limited to 'e-util/e-xml-hash-utils.c')
-rw-r--r--e-util/e-xml-hash-utils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/e-util/e-xml-hash-utils.c b/e-util/e-xml-hash-utils.c
index 3100807b13..ba72321afe 100644
--- a/e-util/e-xml-hash-utils.c
+++ b/e-util/e-xml-hash-utils.c
@@ -32,7 +32,8 @@ GHashTable *
e_xml_to_hash (xmlDoc *doc, EXmlHashType type)
{
xmlNode *root, *node;
- const char *key, *value;
+ const char *key;
+ xmlChar *value;
GHashTable *hash;
hash = g_hash_table_new (g_str_hash, g_str_equal);